├── AlgorithmsProject_CVRP_PSO ├── lib │ ├── gs-core-1.3 │ │ ├── gs-core-1.3-javadoc.jar │ │ ├── gs-core-1.3-javadoc.jar.asc │ │ ├── gs-core-1.3-sources.jar │ │ ├── gs-core-1.3-sources.jar.asc │ │ ├── gs-core-1.3.jar │ │ ├── gs-core-1.3.jar.asc │ │ ├── gs-core-1.3.pom │ │ └── gs-core-1.3.pom.asc │ ├── gs-ui-1.3 │ │ ├── gs-ui-1.3-javadoc.jar │ │ ├── gs-ui-1.3-javadoc.jar.asc │ │ ├── gs-ui-1.3-sources.jar │ │ ├── gs-ui-1.3-sources.jar.asc │ │ ├── gs-ui-1.3.jar │ │ ├── gs-ui-1.3.jar.asc │ │ ├── gs-ui-1.3.pom │ │ └── gs-ui-1.3.pom.asc │ ├── jcommon-1.0.23 │ │ └── jcommon-1.0.23 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── ant │ │ │ ├── build.properties │ │ │ └── build.xml │ │ │ ├── checkstyle │ │ │ ├── javadocs.xml │ │ │ ├── lines.xml │ │ │ ├── properties.txt │ │ │ ├── style.xml │ │ │ └── whitespace.xml │ │ │ ├── jcommon-1.0.23.jar │ │ │ ├── jcommon-xml-1.0.23.jar │ │ │ ├── lib │ │ │ └── junit.jar │ │ │ ├── pom.xml │ │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ ├── com │ │ │ │ └── keypoint │ │ │ │ │ ├── PngEncoder.java │ │ │ │ │ └── package.html │ │ │ │ ├── org │ │ │ │ └── jfree │ │ │ │ │ ├── JCommon.java │ │ │ │ │ ├── JCommonInfo.java │ │ │ │ │ ├── base │ │ │ │ │ ├── AbstractBoot.java │ │ │ │ │ ├── BaseBoot.java │ │ │ │ │ ├── BasicProjectInfo.java │ │ │ │ │ ├── BootableProjectInfo.java │ │ │ │ │ ├── ClassPathDebugger.java │ │ │ │ │ ├── Library.java │ │ │ │ │ ├── config │ │ │ │ │ │ ├── HierarchicalConfiguration.java │ │ │ │ │ │ ├── ModifiableConfiguration.java │ │ │ │ │ │ ├── PropertyFileConfiguration.java │ │ │ │ │ │ └── SystemPropertyConfiguration.java │ │ │ │ │ ├── jcommon.properties │ │ │ │ │ ├── log │ │ │ │ │ │ ├── DefaultLog.java │ │ │ │ │ │ ├── DefaultLogModule.java │ │ │ │ │ │ ├── LogConfiguration.java │ │ │ │ │ │ ├── MemoryUsageMessage.java │ │ │ │ │ │ ├── PadMessage.java │ │ │ │ │ │ └── module.properties │ │ │ │ │ ├── modules │ │ │ │ │ │ ├── AbstractModule.java │ │ │ │ │ │ ├── DefaultModuleInfo.java │ │ │ │ │ │ ├── Module.java │ │ │ │ │ │ ├── ModuleInfo.java │ │ │ │ │ │ ├── ModuleInitializeException.java │ │ │ │ │ │ ├── ModuleInitializer.java │ │ │ │ │ │ ├── PackageManager.java │ │ │ │ │ │ ├── PackageSorter.java │ │ │ │ │ │ ├── PackageState.java │ │ │ │ │ │ ├── SubSystem.java │ │ │ │ │ │ └── package.html │ │ │ │ │ └── package.html │ │ │ │ │ ├── date │ │ │ │ │ ├── AnnualDateRule.java │ │ │ │ │ ├── DateUtilities.java │ │ │ │ │ ├── DayAndMonthRule.java │ │ │ │ │ ├── DayOfWeekInMonthRule.java │ │ │ │ │ ├── EasterSundayRule.java │ │ │ │ │ ├── MonthConstants.java │ │ │ │ │ ├── RelativeDayOfWeekRule.java │ │ │ │ │ ├── SerialDate.java │ │ │ │ │ ├── SerialDateUtilities.java │ │ │ │ │ ├── SpreadsheetDate.java │ │ │ │ │ └── package.html │ │ │ │ │ ├── demo │ │ │ │ │ ├── DateChooserPanelDemo.java │ │ │ │ │ ├── DrawStringDemo.java │ │ │ │ │ ├── DrawStringPanel.java │ │ │ │ │ ├── TextBlockDemo.java │ │ │ │ │ ├── TextBlockPanel.java │ │ │ │ │ └── package.html │ │ │ │ │ ├── io │ │ │ │ │ ├── FileUtilities.java │ │ │ │ │ ├── IOUtils.java │ │ │ │ │ ├── SerialUtilities.java │ │ │ │ │ └── package.html │ │ │ │ │ ├── layout │ │ │ │ │ ├── CenterLayout.java │ │ │ │ │ ├── FormatLayout.java │ │ │ │ │ ├── LCBLayout.java │ │ │ │ │ ├── RadialLayout.java │ │ │ │ │ └── package.html │ │ │ │ │ ├── package.html │ │ │ │ │ ├── resources │ │ │ │ │ ├── JCommonResources.java │ │ │ │ │ └── package.html │ │ │ │ │ ├── text │ │ │ │ │ ├── G2TextMeasurer.java │ │ │ │ │ ├── TextBlock.java │ │ │ │ │ ├── TextBlockAnchor.java │ │ │ │ │ ├── TextBox.java │ │ │ │ │ ├── TextFragment.java │ │ │ │ │ ├── TextLine.java │ │ │ │ │ ├── TextMeasurer.java │ │ │ │ │ ├── TextUtilities.java │ │ │ │ │ └── package.html │ │ │ │ │ ├── threads │ │ │ │ │ ├── ReaderWriterLock.java │ │ │ │ │ └── package.html │ │ │ │ │ ├── ui │ │ │ │ │ ├── Align.java │ │ │ │ │ ├── ApplicationFrame.java │ │ │ │ │ ├── ArrowPanel.java │ │ │ │ │ ├── BevelArrowIcon.java │ │ │ │ │ ├── DateCellRenderer.java │ │ │ │ │ ├── DateChooserPanel.java │ │ │ │ │ ├── Drawable.java │ │ │ │ │ ├── DrawablePanel.java │ │ │ │ │ ├── ExtendedDrawable.java │ │ │ │ │ ├── ExtensionFileFilter.java │ │ │ │ │ ├── FilesystemFilter.java │ │ │ │ │ ├── FloatDimension.java │ │ │ │ │ ├── FloatingButtonEnabler.java │ │ │ │ │ ├── FontChooserDialog.java │ │ │ │ │ ├── FontChooserPanel.java │ │ │ │ │ ├── FontDisplayField.java │ │ │ │ │ ├── GradientPaintTransformType.java │ │ │ │ │ ├── GradientPaintTransformer.java │ │ │ │ │ ├── HorizontalAlignment.java │ │ │ │ │ ├── InsetsChooserPanel.java │ │ │ │ │ ├── InsetsTextField.java │ │ │ │ │ ├── IntegerDocument.java │ │ │ │ │ ├── JTextObserver.java │ │ │ │ │ ├── KeyedComboBoxModel.java │ │ │ │ │ ├── L1R1ButtonPanel.java │ │ │ │ │ ├── L1R2ButtonPanel.java │ │ │ │ │ ├── L1R3ButtonPanel.java │ │ │ │ │ ├── Layer.java │ │ │ │ │ ├── LengthAdjustmentType.java │ │ │ │ │ ├── LengthLimitingDocument.java │ │ │ │ │ ├── LocalizationBundle.properties │ │ │ │ │ ├── LocalizationBundle_de.properties │ │ │ │ │ ├── LocalizationBundle_es.properties │ │ │ │ │ ├── LocalizationBundle_fr.properties │ │ │ │ │ ├── LocalizationBundle_pt_PT.properties │ │ │ │ │ ├── NumberCellRenderer.java │ │ │ │ │ ├── OverlayLayout.java │ │ │ │ │ ├── PaintSample.java │ │ │ │ │ ├── RectangleAnchor.java │ │ │ │ │ ├── RectangleEdge.java │ │ │ │ │ ├── RectangleInsets.java │ │ │ │ │ ├── RefineryUtilities.java │ │ │ │ │ ├── SerialDateChooserPanel.java │ │ │ │ │ ├── Size2D.java │ │ │ │ │ ├── SortButtonRenderer.java │ │ │ │ │ ├── SortableTable.java │ │ │ │ │ ├── SortableTableHeaderListener.java │ │ │ │ │ ├── SortableTableModel.java │ │ │ │ │ ├── Spinner.java │ │ │ │ │ ├── StandardDialog.java │ │ │ │ │ ├── StandardGradientPaintTransformer.java │ │ │ │ │ ├── StrokeChooserPanel.java │ │ │ │ │ ├── StrokeSample.java │ │ │ │ │ ├── TextAnchor.java │ │ │ │ │ ├── UIUtilities.java │ │ │ │ │ ├── VerticalAlignment.java │ │ │ │ │ ├── WizardDialog.java │ │ │ │ │ ├── WizardPanel.java │ │ │ │ │ ├── about │ │ │ │ │ │ ├── AboutDialog.java │ │ │ │ │ │ ├── AboutFrame.java │ │ │ │ │ │ ├── AboutPanel.java │ │ │ │ │ │ ├── Contributor.java │ │ │ │ │ │ ├── ContributorsPanel.java │ │ │ │ │ │ ├── ContributorsTableModel.java │ │ │ │ │ │ ├── Library.java │ │ │ │ │ │ ├── LibraryPanel.java │ │ │ │ │ │ ├── LibraryTableModel.java │ │ │ │ │ │ ├── Licences.java │ │ │ │ │ │ ├── ProjectInfo.java │ │ │ │ │ │ ├── SystemProperties.java │ │ │ │ │ │ ├── SystemPropertiesFrame.java │ │ │ │ │ │ ├── SystemPropertiesPanel.java │ │ │ │ │ │ ├── SystemPropertiesTableModel.java │ │ │ │ │ │ ├── gpl-2.0.txt │ │ │ │ │ │ ├── lgpl-2.1.txt │ │ │ │ │ │ ├── package.html │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ ├── AboutResources.java │ │ │ │ │ │ │ ├── AboutResources_de.java │ │ │ │ │ │ │ ├── AboutResources_es.java │ │ │ │ │ │ │ ├── AboutResources_fr.java │ │ │ │ │ │ │ ├── AboutResources_pl.java │ │ │ │ │ │ │ └── package.html │ │ │ │ │ ├── action │ │ │ │ │ │ ├── AbstractActionDowngrade.java │ │ │ │ │ │ ├── AbstractFileSelectionAction.java │ │ │ │ │ │ ├── ActionButton.java │ │ │ │ │ │ ├── ActionConcentrator.java │ │ │ │ │ │ ├── ActionDowngrade.java │ │ │ │ │ │ ├── ActionMenuItem.java │ │ │ │ │ │ ├── ActionRadioButton.java │ │ │ │ │ │ ├── DowngradeActionMap.java │ │ │ │ │ │ └── package.html │ │ │ │ │ ├── package.html │ │ │ │ │ └── tabbedui │ │ │ │ │ │ ├── AbstractTabbedUI.java │ │ │ │ │ │ ├── DetailEditor.java │ │ │ │ │ │ ├── RootEditor.java │ │ │ │ │ │ ├── RootPanel.java │ │ │ │ │ │ ├── TabbedApplet.java │ │ │ │ │ │ ├── TabbedDialog.java │ │ │ │ │ │ ├── TabbedFrame.java │ │ │ │ │ │ ├── VerticalLayout.java │ │ │ │ │ │ └── package.html │ │ │ │ │ ├── util │ │ │ │ │ ├── AbstractObjectList.java │ │ │ │ │ ├── ArrayUtilities.java │ │ │ │ │ ├── AttributedStringUtilities.java │ │ │ │ │ ├── BooleanList.java │ │ │ │ │ ├── BooleanUtilities.java │ │ │ │ │ ├── ClassComparator.java │ │ │ │ │ ├── Configuration.java │ │ │ │ │ ├── DefaultConfiguration.java │ │ │ │ │ ├── ExtendedConfiguration.java │ │ │ │ │ ├── ExtendedConfigurationWrapper.java │ │ │ │ │ ├── FastStack.java │ │ │ │ │ ├── HashNMap.java │ │ │ │ │ ├── LineBreakIterator.java │ │ │ │ │ ├── Log.java │ │ │ │ │ ├── LogContext.java │ │ │ │ │ ├── LogTarget.java │ │ │ │ │ ├── ObjectList.java │ │ │ │ │ ├── ObjectTable.java │ │ │ │ │ ├── ObjectUtilities.java │ │ │ │ │ ├── PaintList.java │ │ │ │ │ ├── PaintUtilities.java │ │ │ │ │ ├── PrintStreamLogTarget.java │ │ │ │ │ ├── PublicCloneable.java │ │ │ │ │ ├── ReadOnlyIterator.java │ │ │ │ │ ├── ResourceBundleSupport.java │ │ │ │ │ ├── ResourceBundleWrapper.java │ │ │ │ │ ├── Rotation.java │ │ │ │ │ ├── ShapeList.java │ │ │ │ │ ├── ShapeUtilities.java │ │ │ │ │ ├── SortOrder.java │ │ │ │ │ ├── SortedConfigurationWriter.java │ │ │ │ │ ├── StackableException.java │ │ │ │ │ ├── StackableRuntimeException.java │ │ │ │ │ ├── StringUtils.java │ │ │ │ │ ├── StrokeList.java │ │ │ │ │ ├── TableOrder.java │ │ │ │ │ ├── UnitType.java │ │ │ │ │ ├── WaitingImageObserver.java │ │ │ │ │ └── package.html │ │ │ │ │ └── xml │ │ │ │ │ ├── AbstractElementDefinitionHandler.java │ │ │ │ │ ├── CommentHandler.java │ │ │ │ │ ├── ElementDefinitionException.java │ │ │ │ │ ├── ElementDefinitionHandler.java │ │ │ │ │ ├── FrontendDefaultHandler.java │ │ │ │ │ ├── JCommonXMLInfo.java │ │ │ │ │ ├── ParseException.java │ │ │ │ │ ├── Parser.java │ │ │ │ │ ├── ParserFrontend.java │ │ │ │ │ ├── ParserUtil.java │ │ │ │ │ ├── attributehandlers │ │ │ │ │ ├── AttributeHandler.java │ │ │ │ │ ├── BooleanAttributeHandler.java │ │ │ │ │ ├── ByteAttributeHandler.java │ │ │ │ │ ├── CharacterAttributeHandler.java │ │ │ │ │ ├── DoubleAttributeHandler.java │ │ │ │ │ ├── FloatAttributeHandler.java │ │ │ │ │ ├── IntegerAttributeHandler.java │ │ │ │ │ ├── LongAttributeHandler.java │ │ │ │ │ ├── ShortAttributeHandler.java │ │ │ │ │ ├── StringAttributeHandler.java │ │ │ │ │ └── package.html │ │ │ │ │ ├── factory │ │ │ │ │ └── objects │ │ │ │ │ │ ├── AbstractObjectDescription.java │ │ │ │ │ │ ├── ArrayClassFactory.java │ │ │ │ │ │ ├── ArrayObjectDescription.java │ │ │ │ │ │ ├── BasicStrokeObjectDescription.java │ │ │ │ │ │ ├── BeanObjectDescription.java │ │ │ │ │ │ ├── BooleanObjectDescription.java │ │ │ │ │ │ ├── ByteObjectDescription.java │ │ │ │ │ │ ├── CharacterObjectDescription.java │ │ │ │ │ │ ├── ClassComparator.java │ │ │ │ │ │ ├── ClassFactory.java │ │ │ │ │ │ ├── ClassFactoryCollector.java │ │ │ │ │ │ ├── ClassFactoryImpl.java │ │ │ │ │ │ ├── ClassLoaderObjectDescription.java │ │ │ │ │ │ ├── CollectionObjectDescription.java │ │ │ │ │ │ ├── ColorObjectDescription.java │ │ │ │ │ │ ├── DateObjectDescription.java │ │ │ │ │ │ ├── DecimalFormatObjectDescription.java │ │ │ │ │ │ ├── Dimension2DObjectDescription.java │ │ │ │ │ │ ├── DimensionObjectDescription.java │ │ │ │ │ │ ├── DoubleObjectDescription.java │ │ │ │ │ │ ├── FloatObjectDescription.java │ │ │ │ │ │ ├── IntegerObjectDescription.java │ │ │ │ │ │ ├── JavaBaseClassFactory.java │ │ │ │ │ │ ├── Line2DObjectDescription.java │ │ │ │ │ │ ├── LongObjectDescription.java │ │ │ │ │ │ ├── ObjectDescription.java │ │ │ │ │ │ ├── ObjectFactoryException.java │ │ │ │ │ │ ├── Point2DObjectDescription.java │ │ │ │ │ │ ├── Rectangle2DObjectDescription.java │ │ │ │ │ │ ├── ShortObjectDescription.java │ │ │ │ │ │ ├── SimpleDateFormatObjectDescription.java │ │ │ │ │ │ ├── StringObjectDescription.java │ │ │ │ │ │ ├── URLClassFactory.java │ │ │ │ │ │ ├── URLObjectDescription.java │ │ │ │ │ │ └── package.html │ │ │ │ │ ├── generator │ │ │ │ │ ├── DefaultModelReader.java │ │ │ │ │ ├── DescriptionGenerator.java │ │ │ │ │ ├── JavaSourceCollector.java │ │ │ │ │ ├── ModelBuilder.java │ │ │ │ │ ├── ModelWriter.java │ │ │ │ │ ├── SourceCollector.java │ │ │ │ │ ├── SplittingModelWriter.java │ │ │ │ │ ├── attributehandler.properties │ │ │ │ │ ├── generator.properties │ │ │ │ │ ├── model.dtd │ │ │ │ │ ├── model │ │ │ │ │ │ ├── ClassDescription.java │ │ │ │ │ │ ├── Comments.java │ │ │ │ │ │ ├── DescriptionModel.java │ │ │ │ │ │ ├── IgnoredPropertyInfo.java │ │ │ │ │ │ ├── IndexedPropertyInfo.java │ │ │ │ │ │ ├── KeyDescription.java │ │ │ │ │ │ ├── ManualMappingInfo.java │ │ │ │ │ │ ├── MappingModel.java │ │ │ │ │ │ ├── MultiplexMappingInfo.java │ │ │ │ │ │ ├── PrintBeanInfo.java │ │ │ │ │ │ ├── PropertyInfo.java │ │ │ │ │ │ ├── PropertyType.java │ │ │ │ │ │ ├── TypeInfo.java │ │ │ │ │ │ └── package.html │ │ │ │ │ └── package.html │ │ │ │ │ ├── package.html │ │ │ │ │ ├── parser │ │ │ │ │ ├── AbstractXmlReadHandler.java │ │ │ │ │ ├── Base64ReadHandler.java │ │ │ │ │ ├── RootXmlReadHandler.java │ │ │ │ │ ├── XmlReadHandler.java │ │ │ │ │ ├── XmlReaderException.java │ │ │ │ │ ├── coretypes │ │ │ │ │ │ ├── BasicStrokeReadHandler.java │ │ │ │ │ │ ├── ColorReadHandler.java │ │ │ │ │ │ ├── FontReadHandler.java │ │ │ │ │ │ ├── GenericReadHandler.java │ │ │ │ │ │ ├── GradientPaintReadHandler.java │ │ │ │ │ │ ├── InsetsReadHandler.java │ │ │ │ │ │ ├── ListReadHandler.java │ │ │ │ │ │ ├── NullReadHandler.java │ │ │ │ │ │ ├── ObjectRefHandler.java │ │ │ │ │ │ ├── Point2DReadHandler.java │ │ │ │ │ │ ├── Rectangle2DReadHandler.java │ │ │ │ │ │ ├── RenderingHintValueReadHandler.java │ │ │ │ │ │ ├── RenderingHintsReadHandler.java │ │ │ │ │ │ ├── StringReadHandler.java │ │ │ │ │ │ └── package.html │ │ │ │ │ └── package.html │ │ │ │ │ ├── util │ │ │ │ │ ├── AbstractModelReader.java │ │ │ │ │ ├── AttributeDefinition.java │ │ │ │ │ ├── Base64.java │ │ │ │ │ ├── BasicTypeSupport.java │ │ │ │ │ ├── ClassModelTags.java │ │ │ │ │ ├── ConstructorDefinition.java │ │ │ │ │ ├── GenericObjectFactory.java │ │ │ │ │ ├── LookupDefinition.java │ │ │ │ │ ├── ManualMappingDefinition.java │ │ │ │ │ ├── MultiplexMappingDefinition.java │ │ │ │ │ ├── MultiplexMappingEntry.java │ │ │ │ │ ├── ObjectDescriptionException.java │ │ │ │ │ ├── ObjectFactory.java │ │ │ │ │ ├── ObjectFactoryLoader.java │ │ │ │ │ ├── PropertyDefinition.java │ │ │ │ │ ├── SimpleObjectFactory.java │ │ │ │ │ └── package.html │ │ │ │ │ └── writer │ │ │ │ │ ├── AbstractXmlWriteHandler.java │ │ │ │ │ ├── AttributeList.java │ │ │ │ │ ├── RootXmlWriteHandler.java │ │ │ │ │ ├── SafeTagList.java │ │ │ │ │ ├── XMLWriter.java │ │ │ │ │ ├── XMLWriterException.java │ │ │ │ │ ├── XMLWriterSupport.java │ │ │ │ │ ├── XmlWriteHandler.java │ │ │ │ │ ├── coretypes │ │ │ │ │ ├── BasicStrokeWriteHandler.java │ │ │ │ │ ├── ColorWriteHandler.java │ │ │ │ │ ├── FontWriteHandler.java │ │ │ │ │ ├── GenericWriteHandler.java │ │ │ │ │ ├── GradientPaintWriteHandler.java │ │ │ │ │ ├── InsetsWriteHandler.java │ │ │ │ │ ├── ListWriteHandler.java │ │ │ │ │ ├── Point2DWriteHandler.java │ │ │ │ │ ├── Rectangle2DWriteHandler.java │ │ │ │ │ ├── RenderingHintsWriteHandler.java │ │ │ │ │ └── package.html │ │ │ │ │ └── package.html │ │ │ │ └── overview.html │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── jfree │ │ │ ├── JCommonTestSuite.java │ │ │ ├── JavaTestSuite.java │ │ │ ├── PaintTest.java │ │ │ ├── StrokeTest.java │ │ │ ├── date │ │ │ ├── DatePackageTests.java │ │ │ ├── SerialDateTest.java │ │ │ ├── SerialDateUtilitiesTest.java │ │ │ └── SpreadsheetDateTest.java │ │ │ ├── io │ │ │ ├── IOPackageTests.java │ │ │ ├── IOUtilsTest.java │ │ │ └── SerialUtilitiesTest.java │ │ │ ├── text │ │ │ ├── TextBlockAnchorTest.java │ │ │ ├── TextBlockTest.java │ │ │ ├── TextBoxTest.java │ │ │ ├── TextFragmentTest.java │ │ │ ├── TextLineTest.java │ │ │ └── TextPackageTests.java │ │ │ ├── ui │ │ │ ├── FontChooserDialogTest.java │ │ │ ├── GradientPaintTransformTypeTest.java │ │ │ ├── HorizontalAlignmentTest.java │ │ │ ├── LayerTest.java │ │ │ ├── RectangleAnchorTest.java │ │ │ ├── RectangleEdgeTest.java │ │ │ ├── RectangleInsetsTest.java │ │ │ ├── Size2DTest.java │ │ │ ├── StandardGradientPaintTransformerTest.java │ │ │ ├── TextAnchorTest.java │ │ │ ├── UIPackageTests.java │ │ │ └── VerticalAlignmentTest.java │ │ │ └── util │ │ │ ├── ArrayUtilitiesTest.java │ │ │ ├── AttributedStringUtilitiesTest.java │ │ │ ├── BooleanListTest.java │ │ │ ├── LogTest.java │ │ │ ├── ObjectListTest.java │ │ │ ├── ObjectTableTest.java │ │ │ ├── ObjectUtilitiesTest.java │ │ │ ├── PaintListTest.java │ │ │ ├── PaintUtilitiesTest.java │ │ │ ├── RotationTest.java │ │ │ ├── ShapeListTest.java │ │ │ ├── ShapeUtilitiesTest.java │ │ │ ├── SortOrderTest.java │ │ │ ├── UnitTypeTest.java │ │ │ └── UtilPackageTests.java │ └── jfreechart-1.0.19 │ │ └── jfreechart-1.0.19 │ │ ├── ChangeLog │ │ ├── NEWS │ │ ├── README.txt │ │ ├── ant │ │ ├── build-fx.xml │ │ ├── build-swt.xml │ │ └── build.xml │ │ ├── checkstyle │ │ ├── javadocs.xml │ │ ├── lines.xml │ │ ├── properties.txt │ │ ├── style.xml │ │ └── whitespace.xml │ │ ├── docfiles │ │ ├── AreaRendererSample.png │ │ ├── BarRenderer3DSample.png │ │ ├── BarRendererSample.png │ │ ├── BoxAndWhiskerRendererSample.png │ │ ├── CandleStickRendererSample.png │ │ ├── CategoryStepRendererSample.png │ │ ├── ClusteredXYBarRendererSample.png │ │ ├── DeviationRendererSample.png │ │ ├── DialPlotSample.png │ │ ├── GanttRendererSample.png │ │ ├── GroupedStackedBarRendererSample.png │ │ ├── HighLowRendererSample.png │ │ ├── IntervalBarRendererSample.png │ │ ├── LayeredBarRendererSample.png │ │ ├── LevelRendererSample.png │ │ ├── LineAndShapeRendererSample.png │ │ ├── LineRenderer3DSample.png │ │ ├── MinMaxCategoryRendererSample.png │ │ ├── PiePlotSample.png │ │ ├── ScatterRendererSample.png │ │ ├── StackedAreaRendererSample.png │ │ ├── StackedBarRenderer3DSample.png │ │ ├── StackedBarRendererSample.png │ │ ├── StackedXYAreaRenderer2Sample.png │ │ ├── StackedXYAreaRendererSample.png │ │ ├── StackedXYBarRendererSample.png │ │ ├── StatisticalBarRendererSample.png │ │ ├── StatisticalLineRendererSample.png │ │ ├── VectorRendererSample.png │ │ ├── WaterfallBarRendererSample.png │ │ ├── WindItemRendererSample.png │ │ ├── XYAreaRenderer2Sample.png │ │ ├── XYAreaRendererSample.png │ │ ├── XYBarRendererSample.png │ │ ├── XYBlockRendererSample.png │ │ ├── XYBoxAndWhiskerRendererSample.png │ │ ├── XYBubbleRendererSample.png │ │ ├── XYDifferenceRendererSample.png │ │ ├── XYDotRendererSample.png │ │ ├── XYErrorRendererSample.png │ │ ├── XYLineAndShapeRendererSample.png │ │ ├── XYShapeRendererSample.png │ │ ├── XYSplineRendererSample.png │ │ ├── XYStepAreaRendererSample.png │ │ ├── XYStepRendererSample.png │ │ └── YIntervalRendererSample.png │ │ ├── experimental │ │ └── org │ │ │ └── jfree │ │ │ └── experimental │ │ │ └── chart │ │ │ ├── demo │ │ │ ├── CombinedCategoryPlotDemo1.java │ │ │ └── CombinedXYPlotDemo1.java │ │ │ ├── plot │ │ │ ├── CombinedCategoryPlot.java │ │ │ └── CombinedXYPlot.java │ │ │ └── renderer │ │ │ └── xy │ │ │ └── XYSmoothLineAndShapeRenderer.java │ │ ├── jfreechart-1.0.19-demo.jar │ │ ├── lib │ │ ├── hamcrest-core-1.3.jar │ │ ├── jcommon-1.0.23.jar │ │ ├── jfreechart-1.0.19-experimental.jar │ │ ├── jfreechart-1.0.19-swt.jar │ │ ├── jfreechart-1.0.19.jar │ │ ├── jfreesvg-2.0.jar │ │ ├── junit-4.11.jar │ │ ├── orsoncharts-1.4-eval-nofx.jar │ │ ├── orsonpdf-1.6-eval.jar │ │ ├── servlet.jar │ │ └── swtgraphics2d.jar │ │ ├── licence-LGPL.txt │ │ ├── pom.xml │ │ ├── source │ │ ├── org │ │ │ └── jfree │ │ │ │ ├── chart │ │ │ │ ├── ChartColor.java │ │ │ │ ├── ChartFactory.java │ │ │ │ ├── ChartFrame.java │ │ │ │ ├── ChartHints.java │ │ │ │ ├── ChartMouseEvent.java │ │ │ │ ├── ChartMouseListener.java │ │ │ │ ├── ChartPanel.java │ │ │ │ ├── ChartRenderingInfo.java │ │ │ │ ├── ChartTheme.java │ │ │ │ ├── ChartTransferable.java │ │ │ │ ├── ChartUtilities.java │ │ │ │ ├── ClipPath.java │ │ │ │ ├── DrawableLegendItem.java │ │ │ │ ├── Effect3D.java │ │ │ │ ├── HashUtilities.java │ │ │ │ ├── JFreeChart.java │ │ │ │ ├── LegendItem.java │ │ │ │ ├── LegendItemCollection.java │ │ │ │ ├── LegendItemSource.java │ │ │ │ ├── LegendRenderingOrder.java │ │ │ │ ├── LocalizationBundle.properties │ │ │ │ ├── LocalizationBundle_cs.properties │ │ │ │ ├── LocalizationBundle_de.properties │ │ │ │ ├── LocalizationBundle_es.properties │ │ │ │ ├── LocalizationBundle_fr.properties │ │ │ │ ├── LocalizationBundle_it.properties │ │ │ │ ├── LocalizationBundle_ja.properties │ │ │ │ ├── LocalizationBundle_nl.properties │ │ │ │ ├── LocalizationBundle_pl.properties │ │ │ │ ├── LocalizationBundle_pt_BR.properties │ │ │ │ ├── LocalizationBundle_pt_PT.properties │ │ │ │ ├── LocalizationBundle_ru.properties │ │ │ │ ├── LocalizationBundle_zh_CN.properties │ │ │ │ ├── LocalizationBundle_zh_TW.properties │ │ │ │ ├── MouseWheelHandler.java │ │ │ │ ├── PaintMap.java │ │ │ │ ├── PolarChartPanel.java │ │ │ │ ├── StandardChartTheme.java │ │ │ │ ├── StrokeMap.java │ │ │ │ ├── annotations │ │ │ │ │ ├── AbstractAnnotation.java │ │ │ │ │ ├── AbstractXYAnnotation.java │ │ │ │ │ ├── Annotation.java │ │ │ │ │ ├── CategoryAnnotation.java │ │ │ │ │ ├── CategoryLineAnnotation.java │ │ │ │ │ ├── CategoryPointerAnnotation.java │ │ │ │ │ ├── CategoryTextAnnotation.java │ │ │ │ │ ├── TextAnnotation.java │ │ │ │ │ ├── XYAnnotation.java │ │ │ │ │ ├── XYAnnotationBoundsInfo.java │ │ │ │ │ ├── XYBoxAnnotation.java │ │ │ │ │ ├── XYDataImageAnnotation.java │ │ │ │ │ ├── XYDrawableAnnotation.java │ │ │ │ │ ├── XYImageAnnotation.java │ │ │ │ │ ├── XYLineAnnotation.java │ │ │ │ │ ├── XYPointerAnnotation.java │ │ │ │ │ ├── XYPolygonAnnotation.java │ │ │ │ │ ├── XYShapeAnnotation.java │ │ │ │ │ ├── XYTextAnnotation.java │ │ │ │ │ ├── XYTitleAnnotation.java │ │ │ │ │ └── package.html │ │ │ │ ├── axis │ │ │ │ │ ├── Axis.java │ │ │ │ │ ├── AxisCollection.java │ │ │ │ │ ├── AxisLabelLocation.java │ │ │ │ │ ├── AxisLocation.java │ │ │ │ │ ├── AxisSpace.java │ │ │ │ │ ├── AxisState.java │ │ │ │ │ ├── CategoryAnchor.java │ │ │ │ │ ├── CategoryAxis.java │ │ │ │ │ ├── CategoryAxis3D.java │ │ │ │ │ ├── CategoryLabelPosition.java │ │ │ │ │ ├── CategoryLabelPositions.java │ │ │ │ │ ├── CategoryLabelWidthType.java │ │ │ │ │ ├── CategoryTick.java │ │ │ │ │ ├── ColorBar.java │ │ │ │ │ ├── CompassFormat.java │ │ │ │ │ ├── CyclicNumberAxis.java │ │ │ │ │ ├── DateAxis.java │ │ │ │ │ ├── DateTick.java │ │ │ │ │ ├── DateTickMarkPosition.java │ │ │ │ │ ├── DateTickUnit.java │ │ │ │ │ ├── DateTickUnitType.java │ │ │ │ │ ├── ExtendedCategoryAxis.java │ │ │ │ │ ├── LogAxis.java │ │ │ │ │ ├── LogTick.java │ │ │ │ │ ├── LogarithmicAxis.java │ │ │ │ │ ├── MarkerAxisBand.java │ │ │ │ │ ├── ModuloAxis.java │ │ │ │ │ ├── MonthDateFormat.java │ │ │ │ │ ├── NumberAxis.java │ │ │ │ │ ├── NumberAxis3D.java │ │ │ │ │ ├── NumberTick.java │ │ │ │ │ ├── NumberTickUnit.java │ │ │ │ │ ├── NumberTickUnitSource.java │ │ │ │ │ ├── PeriodAxis.java │ │ │ │ │ ├── PeriodAxisLabelInfo.java │ │ │ │ │ ├── QuarterDateFormat.java │ │ │ │ │ ├── SegmentedTimeline.java │ │ │ │ │ ├── StandardTickUnitSource.java │ │ │ │ │ ├── SubCategoryAxis.java │ │ │ │ │ ├── SymbolAxis.java │ │ │ │ │ ├── Tick.java │ │ │ │ │ ├── TickType.java │ │ │ │ │ ├── TickUnit.java │ │ │ │ │ ├── TickUnitSource.java │ │ │ │ │ ├── TickUnits.java │ │ │ │ │ ├── Timeline.java │ │ │ │ │ ├── ValueAxis.java │ │ │ │ │ ├── ValueTick.java │ │ │ │ │ └── package.html │ │ │ │ ├── block │ │ │ │ │ ├── AbstractBlock.java │ │ │ │ │ ├── Arrangement.java │ │ │ │ │ ├── Block.java │ │ │ │ │ ├── BlockBorder.java │ │ │ │ │ ├── BlockContainer.java │ │ │ │ │ ├── BlockFrame.java │ │ │ │ │ ├── BlockParams.java │ │ │ │ │ ├── BlockResult.java │ │ │ │ │ ├── BorderArrangement.java │ │ │ │ │ ├── CenterArrangement.java │ │ │ │ │ ├── ColorBlock.java │ │ │ │ │ ├── ColumnArrangement.java │ │ │ │ │ ├── EmptyBlock.java │ │ │ │ │ ├── EntityBlockParams.java │ │ │ │ │ ├── EntityBlockResult.java │ │ │ │ │ ├── FlowArrangement.java │ │ │ │ │ ├── GridArrangement.java │ │ │ │ │ ├── LabelBlock.java │ │ │ │ │ ├── LengthConstraintType.java │ │ │ │ │ ├── LineBorder.java │ │ │ │ │ ├── RectangleConstraint.java │ │ │ │ │ └── package.html │ │ │ │ ├── demo │ │ │ │ │ ├── BarChartDemo1.java │ │ │ │ │ ├── PieChartDemo1.java │ │ │ │ │ ├── TimeSeriesChartDemo1.java │ │ │ │ │ └── package.html │ │ │ │ ├── editor │ │ │ │ │ ├── ChartEditor.java │ │ │ │ │ ├── ChartEditorFactory.java │ │ │ │ │ ├── ChartEditorManager.java │ │ │ │ │ ├── DefaultAxisEditor.java │ │ │ │ │ ├── DefaultChartEditor.java │ │ │ │ │ ├── DefaultChartEditorFactory.java │ │ │ │ │ ├── DefaultColorBarEditor.java │ │ │ │ │ ├── DefaultLogAxisEditor.java │ │ │ │ │ ├── DefaultNumberAxisEditor.java │ │ │ │ │ ├── DefaultPlotEditor.java │ │ │ │ │ ├── DefaultPolarPlotEditor.java │ │ │ │ │ ├── DefaultTitleEditor.java │ │ │ │ │ ├── DefaultValueAxisEditor.java │ │ │ │ │ ├── LocalizationBundle.properties │ │ │ │ │ ├── LocalizationBundle_cs.properties │ │ │ │ │ ├── LocalizationBundle_de.properties │ │ │ │ │ ├── LocalizationBundle_es.properties │ │ │ │ │ ├── LocalizationBundle_fr.properties │ │ │ │ │ ├── LocalizationBundle_ja.properties │ │ │ │ │ ├── LocalizationBundle_nl.properties │ │ │ │ │ ├── LocalizationBundle_pl.properties │ │ │ │ │ ├── LocalizationBundle_pt_BR.properties │ │ │ │ │ ├── LocalizationBundle_pt_PT.properties │ │ │ │ │ ├── LocalizationBundle_ru.properties │ │ │ │ │ ├── LocalizationBundle_zh_CN.properties │ │ │ │ │ ├── PaletteChooserPanel.java │ │ │ │ │ ├── PaletteSample.java │ │ │ │ │ └── package.html │ │ │ │ ├── encoders │ │ │ │ │ ├── EncoderUtil.java │ │ │ │ │ ├── ImageEncoder.java │ │ │ │ │ ├── ImageEncoderFactory.java │ │ │ │ │ ├── ImageFormat.java │ │ │ │ │ ├── KeypointPNGEncoderAdapter.java │ │ │ │ │ ├── SunJPEGEncoderAdapter.java │ │ │ │ │ ├── SunPNGEncoderAdapter.java │ │ │ │ │ └── package.html │ │ │ │ ├── entity │ │ │ │ │ ├── AxisEntity.java │ │ │ │ │ ├── CategoryItemEntity.java │ │ │ │ │ ├── CategoryLabelEntity.java │ │ │ │ │ ├── ChartEntity.java │ │ │ │ │ ├── ContourEntity.java │ │ │ │ │ ├── EntityCollection.java │ │ │ │ │ ├── JFreeChartEntity.java │ │ │ │ │ ├── LegendItemEntity.java │ │ │ │ │ ├── PieSectionEntity.java │ │ │ │ │ ├── PlotEntity.java │ │ │ │ │ ├── StandardEntityCollection.java │ │ │ │ │ ├── TickLabelEntity.java │ │ │ │ │ ├── TitleEntity.java │ │ │ │ │ ├── XYAnnotationEntity.java │ │ │ │ │ ├── XYItemEntity.java │ │ │ │ │ └── package.html │ │ │ │ ├── event │ │ │ │ │ ├── AnnotationChangeEvent.java │ │ │ │ │ ├── AnnotationChangeListener.java │ │ │ │ │ ├── AxisChangeEvent.java │ │ │ │ │ ├── AxisChangeListener.java │ │ │ │ │ ├── ChartChangeEvent.java │ │ │ │ │ ├── ChartChangeEventType.java │ │ │ │ │ ├── ChartChangeListener.java │ │ │ │ │ ├── ChartProgressEvent.java │ │ │ │ │ ├── ChartProgressListener.java │ │ │ │ │ ├── MarkerChangeEvent.java │ │ │ │ │ ├── MarkerChangeListener.java │ │ │ │ │ ├── OverlayChangeEvent.java │ │ │ │ │ ├── OverlayChangeListener.java │ │ │ │ │ ├── PlotChangeEvent.java │ │ │ │ │ ├── PlotChangeListener.java │ │ │ │ │ ├── RendererChangeEvent.java │ │ │ │ │ ├── RendererChangeListener.java │ │ │ │ │ ├── TitleChangeEvent.java │ │ │ │ │ ├── TitleChangeListener.java │ │ │ │ │ └── package.html │ │ │ │ ├── fx │ │ │ │ │ ├── ChartCanvas.java │ │ │ │ │ ├── ChartViewer.java │ │ │ │ │ ├── ChartViewerSkin.java │ │ │ │ │ ├── FXGraphics2D.java │ │ │ │ │ ├── chart-viewer.css │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── BarChartFXDemo1.java │ │ │ │ │ │ ├── PieChartFXDemo1.java │ │ │ │ │ │ ├── TimeSeriesChartFXDemo1.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ ├── interaction │ │ │ │ │ │ ├── AbstractMouseHandlerFX.java │ │ │ │ │ │ ├── AnchorHandlerFX.java │ │ │ │ │ │ ├── ChartMouseEventFX.java │ │ │ │ │ │ ├── ChartMouseListenerFX.java │ │ │ │ │ │ ├── DispatchHandlerFX.java │ │ │ │ │ │ ├── MouseHandlerFX.java │ │ │ │ │ │ ├── PanHandlerFX.java │ │ │ │ │ │ ├── ScrollHandlerFX.java │ │ │ │ │ │ ├── TooltipHandlerFX.java │ │ │ │ │ │ ├── ZoomHandlerFX.java │ │ │ │ │ │ └── package-info.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── gorilla.jpg │ │ │ │ ├── imagemap │ │ │ │ │ ├── DynamicDriveToolTipTagFragmentGenerator.java │ │ │ │ │ ├── ImageMapUtilities.java │ │ │ │ │ ├── OverLIBToolTipTagFragmentGenerator.java │ │ │ │ │ ├── StandardToolTipTagFragmentGenerator.java │ │ │ │ │ ├── StandardURLTagFragmentGenerator.java │ │ │ │ │ ├── ToolTipTagFragmentGenerator.java │ │ │ │ │ ├── URLTagFragmentGenerator.java │ │ │ │ │ └── package.html │ │ │ │ ├── labels │ │ │ │ │ ├── AbstractCategoryItemLabelGenerator.java │ │ │ │ │ ├── AbstractPieItemLabelGenerator.java │ │ │ │ │ ├── AbstractXYItemLabelGenerator.java │ │ │ │ │ ├── BoxAndWhiskerToolTipGenerator.java │ │ │ │ │ ├── BoxAndWhiskerXYToolTipGenerator.java │ │ │ │ │ ├── BubbleXYItemLabelGenerator.java │ │ │ │ │ ├── CategoryItemLabelGenerator.java │ │ │ │ │ ├── CategorySeriesLabelGenerator.java │ │ │ │ │ ├── CategoryToolTipGenerator.java │ │ │ │ │ ├── ContourToolTipGenerator.java │ │ │ │ │ ├── CrosshairLabelGenerator.java │ │ │ │ │ ├── CustomXYToolTipGenerator.java │ │ │ │ │ ├── HighLowItemLabelGenerator.java │ │ │ │ │ ├── IntervalCategoryItemLabelGenerator.java │ │ │ │ │ ├── IntervalCategoryToolTipGenerator.java │ │ │ │ │ ├── IntervalXYItemLabelGenerator.java │ │ │ │ │ ├── ItemLabelAnchor.java │ │ │ │ │ ├── ItemLabelPosition.java │ │ │ │ │ ├── MultipleXYSeriesLabelGenerator.java │ │ │ │ │ ├── PieSectionLabelGenerator.java │ │ │ │ │ ├── PieToolTipGenerator.java │ │ │ │ │ ├── StandardCategoryItemLabelGenerator.java │ │ │ │ │ ├── StandardCategorySeriesLabelGenerator.java │ │ │ │ │ ├── StandardCategoryToolTipGenerator.java │ │ │ │ │ ├── StandardContourToolTipGenerator.java │ │ │ │ │ ├── StandardCrosshairLabelGenerator.java │ │ │ │ │ ├── StandardPieSectionLabelGenerator.java │ │ │ │ │ ├── StandardPieToolTipGenerator.java │ │ │ │ │ ├── StandardXYItemLabelGenerator.java │ │ │ │ │ ├── StandardXYSeriesLabelGenerator.java │ │ │ │ │ ├── StandardXYToolTipGenerator.java │ │ │ │ │ ├── StandardXYZToolTipGenerator.java │ │ │ │ │ ├── SymbolicXYItemLabelGenerator.java │ │ │ │ │ ├── XYItemLabelGenerator.java │ │ │ │ │ ├── XYSeriesLabelGenerator.java │ │ │ │ │ ├── XYToolTipGenerator.java │ │ │ │ │ ├── XYZToolTipGenerator.java │ │ │ │ │ └── package.html │ │ │ │ ├── needle │ │ │ │ │ ├── ArrowNeedle.java │ │ │ │ │ ├── LineNeedle.java │ │ │ │ │ ├── LongNeedle.java │ │ │ │ │ ├── MeterNeedle.java │ │ │ │ │ ├── MiddlePinNeedle.java │ │ │ │ │ ├── PinNeedle.java │ │ │ │ │ ├── PlumNeedle.java │ │ │ │ │ ├── PointerNeedle.java │ │ │ │ │ ├── ShipNeedle.java │ │ │ │ │ ├── WindNeedle.java │ │ │ │ │ └── package.html │ │ │ │ ├── package.html │ │ │ │ ├── panel │ │ │ │ │ ├── AbstractOverlay.java │ │ │ │ │ ├── CrosshairOverlay.java │ │ │ │ │ ├── Overlay.java │ │ │ │ │ └── package.html │ │ │ │ ├── plot │ │ │ │ │ ├── AbstractPieLabelDistributor.java │ │ │ │ │ ├── CategoryCrosshairState.java │ │ │ │ │ ├── CategoryMarker.java │ │ │ │ │ ├── CategoryPlot.java │ │ │ │ │ ├── CenterTextMode.java │ │ │ │ │ ├── ColorPalette.java │ │ │ │ │ ├── CombinedDomainCategoryPlot.java │ │ │ │ │ ├── CombinedDomainXYPlot.java │ │ │ │ │ ├── CombinedRangeCategoryPlot.java │ │ │ │ │ ├── CombinedRangeXYPlot.java │ │ │ │ │ ├── CompassPlot.java │ │ │ │ │ ├── ContourPlot.java │ │ │ │ │ ├── ContourPlotUtilities.java │ │ │ │ │ ├── ContourValuePlot.java │ │ │ │ │ ├── Crosshair.java │ │ │ │ │ ├── CrosshairState.java │ │ │ │ │ ├── DatasetRenderingOrder.java │ │ │ │ │ ├── DefaultDrawingSupplier.java │ │ │ │ │ ├── DialShape.java │ │ │ │ │ ├── DrawingSupplier.java │ │ │ │ │ ├── FastScatterPlot.java │ │ │ │ │ ├── GreyPalette.java │ │ │ │ │ ├── IntervalMarker.java │ │ │ │ │ ├── JThermometer.java │ │ │ │ │ ├── LocalizationBundle.properties │ │ │ │ │ ├── LocalizationBundle_cs.properties │ │ │ │ │ ├── LocalizationBundle_de.properties │ │ │ │ │ ├── LocalizationBundle_es.properties │ │ │ │ │ ├── LocalizationBundle_fr.properties │ │ │ │ │ ├── LocalizationBundle_ja.properties │ │ │ │ │ ├── LocalizationBundle_nl.properties │ │ │ │ │ ├── LocalizationBundle_pl.properties │ │ │ │ │ ├── LocalizationBundle_pt_PT.properties │ │ │ │ │ ├── LocalizationBundle_ru.properties │ │ │ │ │ ├── LocalizationBundle_zh_CN.properties │ │ │ │ │ ├── Marker.java │ │ │ │ │ ├── MeterInterval.java │ │ │ │ │ ├── MeterPlot.java │ │ │ │ │ ├── MultiplePiePlot.java │ │ │ │ │ ├── Pannable.java │ │ │ │ │ ├── PieLabelDistributor.java │ │ │ │ │ ├── PieLabelLinkStyle.java │ │ │ │ │ ├── PieLabelRecord.java │ │ │ │ │ ├── PiePlot.java │ │ │ │ │ ├── PiePlot3D.java │ │ │ │ │ ├── PiePlotState.java │ │ │ │ │ ├── Plot.java │ │ │ │ │ ├── PlotOrientation.java │ │ │ │ │ ├── PlotRenderingInfo.java │ │ │ │ │ ├── PlotState.java │ │ │ │ │ ├── PlotUtilities.java │ │ │ │ │ ├── PolarAxisLocation.java │ │ │ │ │ ├── PolarPlot.java │ │ │ │ │ ├── RainbowPalette.java │ │ │ │ │ ├── RingPlot.java │ │ │ │ │ ├── SeriesRenderingOrder.java │ │ │ │ │ ├── SpiderWebPlot.java │ │ │ │ │ ├── ThermometerPlot.java │ │ │ │ │ ├── ValueAxisPlot.java │ │ │ │ │ ├── ValueMarker.java │ │ │ │ │ ├── WaferMapPlot.java │ │ │ │ │ ├── XYCrosshairState.java │ │ │ │ │ ├── XYPlot.java │ │ │ │ │ ├── Zoomable.java │ │ │ │ │ ├── dial │ │ │ │ │ │ ├── AbstractDialLayer.java │ │ │ │ │ │ ├── ArcDialFrame.java │ │ │ │ │ │ ├── DialBackground.java │ │ │ │ │ │ ├── DialCap.java │ │ │ │ │ │ ├── DialFrame.java │ │ │ │ │ │ ├── DialLayer.java │ │ │ │ │ │ ├── DialLayerChangeEvent.java │ │ │ │ │ │ ├── DialLayerChangeListener.java │ │ │ │ │ │ ├── DialPlot.java │ │ │ │ │ │ ├── DialPointer.java │ │ │ │ │ │ ├── DialScale.java │ │ │ │ │ │ ├── DialTextAnnotation.java │ │ │ │ │ │ ├── DialValueIndicator.java │ │ │ │ │ │ ├── StandardDialFrame.java │ │ │ │ │ │ ├── StandardDialRange.java │ │ │ │ │ │ ├── StandardDialScale.java │ │ │ │ │ │ └── package.html │ │ │ │ │ └── package.html │ │ │ │ ├── renderer │ │ │ │ │ ├── AbstractRenderer.java │ │ │ │ │ ├── AreaRendererEndType.java │ │ │ │ │ ├── DefaultPolarItemRenderer.java │ │ │ │ │ ├── GrayPaintScale.java │ │ │ │ │ ├── LookupPaintScale.java │ │ │ │ │ ├── NotOutlierException.java │ │ │ │ │ ├── Outlier.java │ │ │ │ │ ├── OutlierList.java │ │ │ │ │ ├── OutlierListCollection.java │ │ │ │ │ ├── PaintScale.java │ │ │ │ │ ├── PolarItemRenderer.java │ │ │ │ │ ├── RendererState.java │ │ │ │ │ ├── RendererUtilities.java │ │ │ │ │ ├── WaferMapRenderer.java │ │ │ │ │ ├── category │ │ │ │ │ │ ├── AbstractCategoryItemRenderer.java │ │ │ │ │ │ ├── AreaRenderer.java │ │ │ │ │ │ ├── BarPainter.java │ │ │ │ │ │ ├── BarRenderer.java │ │ │ │ │ │ ├── BarRenderer3D.java │ │ │ │ │ │ ├── BoxAndWhiskerRenderer.java │ │ │ │ │ │ ├── CategoryItemRenderer.java │ │ │ │ │ │ ├── CategoryItemRendererState.java │ │ │ │ │ │ ├── CategoryStepRenderer.java │ │ │ │ │ │ ├── DefaultCategoryItemRenderer.java │ │ │ │ │ │ ├── GanttRenderer.java │ │ │ │ │ │ ├── GradientBarPainter.java │ │ │ │ │ │ ├── GroupedStackedBarRenderer.java │ │ │ │ │ │ ├── IntervalBarRenderer.java │ │ │ │ │ │ ├── LayeredBarRenderer.java │ │ │ │ │ │ ├── LevelRenderer.java │ │ │ │ │ │ ├── LineAndShapeRenderer.java │ │ │ │ │ │ ├── LineRenderer3D.java │ │ │ │ │ │ ├── MinMaxCategoryRenderer.java │ │ │ │ │ │ ├── ScatterRenderer.java │ │ │ │ │ │ ├── StackedAreaRenderer.java │ │ │ │ │ │ ├── StackedBarRenderer.java │ │ │ │ │ │ ├── StackedBarRenderer3D.java │ │ │ │ │ │ ├── StandardBarPainter.java │ │ │ │ │ │ ├── StatisticalBarRenderer.java │ │ │ │ │ │ ├── StatisticalLineAndShapeRenderer.java │ │ │ │ │ │ ├── WaterfallBarRenderer.java │ │ │ │ │ │ └── package.html │ │ │ │ │ ├── package.html │ │ │ │ │ └── xy │ │ │ │ │ │ ├── AbstractXYItemRenderer.java │ │ │ │ │ │ ├── CandlestickRenderer.java │ │ │ │ │ │ ├── ClusteredXYBarRenderer.java │ │ │ │ │ │ ├── CyclicXYItemRenderer.java │ │ │ │ │ │ ├── DefaultXYItemRenderer.java │ │ │ │ │ │ ├── DeviationRenderer.java │ │ │ │ │ │ ├── GradientXYBarPainter.java │ │ │ │ │ │ ├── HighLowRenderer.java │ │ │ │ │ │ ├── SamplingXYLineRenderer.java │ │ │ │ │ │ ├── StackedXYAreaRenderer.java │ │ │ │ │ │ ├── StackedXYAreaRenderer2.java │ │ │ │ │ │ ├── StackedXYBarRenderer.java │ │ │ │ │ │ ├── StandardXYBarPainter.java │ │ │ │ │ │ ├── StandardXYItemRenderer.java │ │ │ │ │ │ ├── VectorRenderer.java │ │ │ │ │ │ ├── WindItemRenderer.java │ │ │ │ │ │ ├── XYAreaRenderer.java │ │ │ │ │ │ ├── XYAreaRenderer2.java │ │ │ │ │ │ ├── XYBarPainter.java │ │ │ │ │ │ ├── XYBarRenderer.java │ │ │ │ │ │ ├── XYBlockRenderer.java │ │ │ │ │ │ ├── XYBoxAndWhiskerRenderer.java │ │ │ │ │ │ ├── XYBubbleRenderer.java │ │ │ │ │ │ ├── XYDifferenceRenderer.java │ │ │ │ │ │ ├── XYDotRenderer.java │ │ │ │ │ │ ├── XYErrorRenderer.java │ │ │ │ │ │ ├── XYItemRenderer.java │ │ │ │ │ │ ├── XYItemRendererState.java │ │ │ │ │ │ ├── XYLine3DRenderer.java │ │ │ │ │ │ ├── XYLineAndShapeRenderer.java │ │ │ │ │ │ ├── XYShapeRenderer.java │ │ │ │ │ │ ├── XYSplineRenderer.java │ │ │ │ │ │ ├── XYStepAreaRenderer.java │ │ │ │ │ │ ├── XYStepRenderer.java │ │ │ │ │ │ ├── YIntervalRenderer.java │ │ │ │ │ │ └── package.html │ │ │ │ ├── resources │ │ │ │ │ ├── JFreeChartResources.java │ │ │ │ │ └── package.html │ │ │ │ ├── servlet │ │ │ │ │ ├── ChartDeleter.java │ │ │ │ │ ├── DisplayChart.java │ │ │ │ │ ├── ServletUtilities.java │ │ │ │ │ └── package.html │ │ │ │ ├── title │ │ │ │ │ ├── CompositeTitle.java │ │ │ │ │ ├── DateTitle.java │ │ │ │ │ ├── ImageTitle.java │ │ │ │ │ ├── LegendGraphic.java │ │ │ │ │ ├── LegendItemBlockContainer.java │ │ │ │ │ ├── LegendTitle.java │ │ │ │ │ ├── PaintScaleLegend.java │ │ │ │ │ ├── ShortTextTitle.java │ │ │ │ │ ├── TextTitle.java │ │ │ │ │ ├── Title.java │ │ │ │ │ └── package.html │ │ │ │ ├── urls │ │ │ │ │ ├── CategoryURLGenerator.java │ │ │ │ │ ├── CustomCategoryURLGenerator.java │ │ │ │ │ ├── CustomPieURLGenerator.java │ │ │ │ │ ├── CustomXYURLGenerator.java │ │ │ │ │ ├── PieURLGenerator.java │ │ │ │ │ ├── StandardCategoryURLGenerator.java │ │ │ │ │ ├── StandardPieURLGenerator.java │ │ │ │ │ ├── StandardXYURLGenerator.java │ │ │ │ │ ├── StandardXYZURLGenerator.java │ │ │ │ │ ├── TimeSeriesURLGenerator.java │ │ │ │ │ ├── URLUtilities.java │ │ │ │ │ ├── XYURLGenerator.java │ │ │ │ │ ├── XYZURLGenerator.java │ │ │ │ │ └── package.html │ │ │ │ └── util │ │ │ │ │ ├── AttrStringUtils.java │ │ │ │ │ ├── CloneUtils.java │ │ │ │ │ ├── DefaultShadowGenerator.java │ │ │ │ │ ├── DirectionalGradientPaintTransformer.java │ │ │ │ │ ├── ExportUtils.java │ │ │ │ │ ├── HMSNumberFormat.java │ │ │ │ │ ├── HexNumberFormat.java │ │ │ │ │ ├── LineUtilities.java │ │ │ │ │ ├── LogFormat.java │ │ │ │ │ ├── PaintAlpha.java │ │ │ │ │ ├── ParamChecks.java │ │ │ │ │ ├── RelativeDateFormat.java │ │ │ │ │ ├── ResourceBundleWrapper.java │ │ │ │ │ ├── ShadowGenerator.java │ │ │ │ │ ├── TextUtils.java │ │ │ │ │ ├── XYCoordinateType.java │ │ │ │ │ └── package.html │ │ │ │ └── data │ │ │ │ ├── ComparableObjectItem.java │ │ │ │ ├── ComparableObjectSeries.java │ │ │ │ ├── DataUtilities.java │ │ │ │ ├── DefaultKeyedValue.java │ │ │ │ ├── DefaultKeyedValues.java │ │ │ │ ├── DefaultKeyedValues2D.java │ │ │ │ ├── DomainInfo.java │ │ │ │ ├── DomainOrder.java │ │ │ │ ├── KeyToGroupMap.java │ │ │ │ ├── KeyedObject.java │ │ │ │ ├── KeyedObjects.java │ │ │ │ ├── KeyedObjects2D.java │ │ │ │ ├── KeyedValue.java │ │ │ │ ├── KeyedValueComparator.java │ │ │ │ ├── KeyedValueComparatorType.java │ │ │ │ ├── KeyedValues.java │ │ │ │ ├── KeyedValues2D.java │ │ │ │ ├── Range.java │ │ │ │ ├── RangeInfo.java │ │ │ │ ├── RangeType.java │ │ │ │ ├── UnknownKeyException.java │ │ │ │ ├── Value.java │ │ │ │ ├── Values.java │ │ │ │ ├── Values2D.java │ │ │ │ ├── category │ │ │ │ ├── CategoryDataset.java │ │ │ │ ├── CategoryRangeInfo.java │ │ │ │ ├── CategoryToPieDataset.java │ │ │ │ ├── DefaultCategoryDataset.java │ │ │ │ ├── DefaultIntervalCategoryDataset.java │ │ │ │ ├── IntervalCategoryDataset.java │ │ │ │ ├── SlidingCategoryDataset.java │ │ │ │ └── package.html │ │ │ │ ├── contour │ │ │ │ ├── ContourDataset.java │ │ │ │ ├── DefaultContourDataset.java │ │ │ │ ├── NonGridContourDataset.java │ │ │ │ └── package.html │ │ │ │ ├── function │ │ │ │ ├── Function2D.java │ │ │ │ ├── LineFunction2D.java │ │ │ │ ├── NormalDistributionFunction2D.java │ │ │ │ ├── PolynomialFunction2D.java │ │ │ │ ├── PowerFunction2D.java │ │ │ │ └── package.html │ │ │ │ ├── gantt │ │ │ │ ├── GanttCategoryDataset.java │ │ │ │ ├── SlidingGanttCategoryDataset.java │ │ │ │ ├── Task.java │ │ │ │ ├── TaskSeries.java │ │ │ │ ├── TaskSeriesCollection.java │ │ │ │ ├── XYTaskDataset.java │ │ │ │ └── package.html │ │ │ │ ├── general │ │ │ │ ├── AbstractDataset.java │ │ │ │ ├── AbstractSeriesDataset.java │ │ │ │ ├── CombinationDataset.java │ │ │ │ ├── CombinedDataset.java │ │ │ │ ├── Dataset.java │ │ │ │ ├── DatasetChangeEvent.java │ │ │ │ ├── DatasetChangeListener.java │ │ │ │ ├── DatasetGroup.java │ │ │ │ ├── DatasetUtilities.java │ │ │ │ ├── DefaultHeatMapDataset.java │ │ │ │ ├── DefaultKeyedValueDataset.java │ │ │ │ ├── DefaultKeyedValues2DDataset.java │ │ │ │ ├── DefaultKeyedValuesDataset.java │ │ │ │ ├── DefaultPieDataset.java │ │ │ │ ├── DefaultValueDataset.java │ │ │ │ ├── HeatMapDataset.java │ │ │ │ ├── HeatMapUtilities.java │ │ │ │ ├── KeyedValueDataset.java │ │ │ │ ├── KeyedValues2DDataset.java │ │ │ │ ├── KeyedValuesDataset.java │ │ │ │ ├── PieDataset.java │ │ │ │ ├── Series.java │ │ │ │ ├── SeriesChangeEvent.java │ │ │ │ ├── SeriesChangeListener.java │ │ │ │ ├── SeriesDataset.java │ │ │ │ ├── SeriesException.java │ │ │ │ ├── SubSeriesDataset.java │ │ │ │ ├── ValueDataset.java │ │ │ │ ├── WaferMapDataset.java │ │ │ │ └── package.html │ │ │ │ ├── io │ │ │ │ ├── CSV.java │ │ │ │ └── package.html │ │ │ │ ├── jdbc │ │ │ │ ├── JDBCCategoryDataset.java │ │ │ │ ├── JDBCPieDataset.java │ │ │ │ ├── JDBCXYDataset.java │ │ │ │ └── package.html │ │ │ │ ├── package.html │ │ │ │ ├── resources │ │ │ │ ├── DataPackageResources.java │ │ │ │ ├── DataPackageResources_de.java │ │ │ │ ├── DataPackageResources_es.java │ │ │ │ ├── DataPackageResources_fr.java │ │ │ │ ├── DataPackageResources_pl.java │ │ │ │ ├── DataPackageResources_ru.java │ │ │ │ └── package.html │ │ │ │ ├── statistics │ │ │ │ ├── BoxAndWhiskerCalculator.java │ │ │ │ ├── BoxAndWhiskerCategoryDataset.java │ │ │ │ ├── BoxAndWhiskerItem.java │ │ │ │ ├── BoxAndWhiskerXYDataset.java │ │ │ │ ├── DefaultBoxAndWhiskerCategoryDataset.java │ │ │ │ ├── DefaultBoxAndWhiskerXYDataset.java │ │ │ │ ├── DefaultMultiValueCategoryDataset.java │ │ │ │ ├── DefaultStatisticalCategoryDataset.java │ │ │ │ ├── HistogramBin.java │ │ │ │ ├── HistogramDataset.java │ │ │ │ ├── HistogramType.java │ │ │ │ ├── MeanAndStandardDeviation.java │ │ │ │ ├── MultiValueCategoryDataset.java │ │ │ │ ├── Regression.java │ │ │ │ ├── SimpleHistogramBin.java │ │ │ │ ├── SimpleHistogramDataset.java │ │ │ │ ├── StatisticalCategoryDataset.java │ │ │ │ ├── Statistics.java │ │ │ │ └── package.html │ │ │ │ ├── time │ │ │ │ ├── DateRange.java │ │ │ │ ├── Day.java │ │ │ │ ├── DynamicTimeSeriesCollection.java │ │ │ │ ├── FixedMillisecond.java │ │ │ │ ├── Hour.java │ │ │ │ ├── Millisecond.java │ │ │ │ ├── Minute.java │ │ │ │ ├── Month.java │ │ │ │ ├── MovingAverage.java │ │ │ │ ├── Quarter.java │ │ │ │ ├── RegularTimePeriod.java │ │ │ │ ├── Second.java │ │ │ │ ├── SimpleTimePeriod.java │ │ │ │ ├── TimePeriod.java │ │ │ │ ├── TimePeriodAnchor.java │ │ │ │ ├── TimePeriodFormatException.java │ │ │ │ ├── TimePeriodValue.java │ │ │ │ ├── TimePeriodValues.java │ │ │ │ ├── TimePeriodValuesCollection.java │ │ │ │ ├── TimeSeries.java │ │ │ │ ├── TimeSeriesCollection.java │ │ │ │ ├── TimeSeriesDataItem.java │ │ │ │ ├── TimeSeriesTableModel.java │ │ │ │ ├── TimeTableXYDataset.java │ │ │ │ ├── Week.java │ │ │ │ ├── Year.java │ │ │ │ ├── ohlc │ │ │ │ │ ├── OHLC.java │ │ │ │ │ ├── OHLCItem.java │ │ │ │ │ ├── OHLCSeries.java │ │ │ │ │ ├── OHLCSeriesCollection.java │ │ │ │ │ └── package.html │ │ │ │ └── package.html │ │ │ │ ├── xml │ │ │ │ ├── CategoryDatasetHandler.java │ │ │ │ ├── CategorySeriesHandler.java │ │ │ │ ├── DatasetReader.java │ │ │ │ ├── DatasetTags.java │ │ │ │ ├── ItemHandler.java │ │ │ │ ├── KeyHandler.java │ │ │ │ ├── PieDatasetHandler.java │ │ │ │ ├── RootHandler.java │ │ │ │ ├── ValueHandler.java │ │ │ │ └── package.html │ │ │ │ └── xy │ │ │ │ ├── AbstractIntervalXYDataset.java │ │ │ │ ├── AbstractXYDataset.java │ │ │ │ ├── AbstractXYZDataset.java │ │ │ │ ├── CategoryTableXYDataset.java │ │ │ │ ├── DefaultHighLowDataset.java │ │ │ │ ├── DefaultIntervalXYDataset.java │ │ │ │ ├── DefaultOHLCDataset.java │ │ │ │ ├── DefaultTableXYDataset.java │ │ │ │ ├── DefaultWindDataset.java │ │ │ │ ├── DefaultXYDataset.java │ │ │ │ ├── DefaultXYZDataset.java │ │ │ │ ├── IntervalXYDataset.java │ │ │ │ ├── IntervalXYDelegate.java │ │ │ │ ├── IntervalXYZDataset.java │ │ │ │ ├── MatrixSeries.java │ │ │ │ ├── MatrixSeriesCollection.java │ │ │ │ ├── NormalizedMatrixSeries.java │ │ │ │ ├── OHLCDataItem.java │ │ │ │ ├── OHLCDataset.java │ │ │ │ ├── TableXYDataset.java │ │ │ │ ├── Vector.java │ │ │ │ ├── VectorDataItem.java │ │ │ │ ├── VectorSeries.java │ │ │ │ ├── VectorSeriesCollection.java │ │ │ │ ├── VectorXYDataset.java │ │ │ │ ├── WindDataset.java │ │ │ │ ├── XIntervalDataItem.java │ │ │ │ ├── XIntervalSeries.java │ │ │ │ ├── XIntervalSeriesCollection.java │ │ │ │ ├── XYBarDataset.java │ │ │ │ ├── XYCoordinate.java │ │ │ │ ├── XYDataItem.java │ │ │ │ ├── XYDataset.java │ │ │ │ ├── XYDatasetTableModel.java │ │ │ │ ├── XYDomainInfo.java │ │ │ │ ├── XYInterval.java │ │ │ │ ├── XYIntervalDataItem.java │ │ │ │ ├── XYIntervalSeries.java │ │ │ │ ├── XYIntervalSeriesCollection.java │ │ │ │ ├── XYRangeInfo.java │ │ │ │ ├── XYSeries.java │ │ │ │ ├── XYSeriesCollection.java │ │ │ │ ├── XYZDataset.java │ │ │ │ ├── XisSymbolic.java │ │ │ │ ├── YInterval.java │ │ │ │ ├── YIntervalDataItem.java │ │ │ │ ├── YIntervalSeries.java │ │ │ │ ├── YIntervalSeriesCollection.java │ │ │ │ ├── YWithXInterval.java │ │ │ │ ├── YisSymbolic.java │ │ │ │ └── package.html │ │ └── overview.html │ │ ├── swt │ │ ├── README │ │ └── org │ │ │ └── jfree │ │ │ └── experimental │ │ │ ├── chart │ │ │ └── swt │ │ │ │ ├── ChartComposite.java │ │ │ │ ├── ChartPrintJob.java │ │ │ │ ├── demo │ │ │ │ ├── SWTBarChartDemo1.java │ │ │ │ ├── SWTMultipleAxisDemo1.java │ │ │ │ ├── SWTPieChartDemo1.java │ │ │ │ └── SWTTimeSeriesDemo.java │ │ │ │ └── editor │ │ │ │ ├── SWTAxisEditor.java │ │ │ │ ├── SWTChartEditor.java │ │ │ │ ├── SWTNumberAxisEditor.java │ │ │ │ ├── SWTOtherEditor.java │ │ │ │ ├── SWTPlotAppearanceEditor.java │ │ │ │ ├── SWTPlotEditor.java │ │ │ │ ├── SWTStrokeCanvas.java │ │ │ │ └── SWTTitleEditor.java │ │ │ └── swt │ │ │ ├── SWTGraphics2D.java │ │ │ ├── SWTPaintCanvas.java │ │ │ └── SWTUtils.java │ │ └── tests │ │ └── org │ │ └── jfree │ │ ├── chart │ │ ├── AreaChartTest.java │ │ ├── BarChart3DTest.java │ │ ├── BarChartTest.java │ │ ├── ChartPanelTest.java │ │ ├── ChartRenderingInfoTest.java │ │ ├── GanttChartTest.java │ │ ├── HashUtilitiesTest.java │ │ ├── JFreeChartTest.java │ │ ├── LegendItemCollectionTest.java │ │ ├── LegendItemTest.java │ │ ├── LineChart3DTest.java │ │ ├── LineChartTest.java │ │ ├── MeterChartTest.java │ │ ├── PaintMapTest.java │ │ ├── PieChart3DTest.java │ │ ├── PieChartTest.java │ │ ├── ScatterPlotTest.java │ │ ├── StackedAreaChartTest.java │ │ ├── StackedBarChart3DTest.java │ │ ├── StackedBarChartTest.java │ │ ├── StandardChartThemeTest.java │ │ ├── StrokeMapTest.java │ │ ├── TestUtilities.java │ │ ├── TimeSeriesChartTest.java │ │ ├── WaterfallChartTest.java │ │ ├── XYAreaChartTest.java │ │ ├── XYBarChartTest.java │ │ ├── XYLineChartTest.java │ │ ├── XYStepAreaChartTest.java │ │ ├── XYStepChartTest.java │ │ ├── annotations │ │ │ ├── CategoryLineAnnotationTest.java │ │ │ ├── CategoryPointerAnnotationTest.java │ │ │ ├── CategoryTextAnnotationTest.java │ │ │ ├── TextAnnotationTest.java │ │ │ ├── XYBoxAnnotationTest.java │ │ │ ├── XYDrawableAnnotationTest.java │ │ │ ├── XYImageAnnotationTest.java │ │ │ ├── XYLineAnnotationTest.java │ │ │ ├── XYPointerAnnotationTest.java │ │ │ ├── XYPolygonAnnotationTest.java │ │ │ ├── XYShapeAnnotationTest.java │ │ │ ├── XYTextAnnotationTest.java │ │ │ ├── XYTitleAnnotationTest.java │ │ │ └── package.html │ │ ├── axis │ │ │ ├── AxisLocationTest.java │ │ │ ├── AxisSpaceTest.java │ │ │ ├── AxisTest.java │ │ │ ├── CategoryAnchorTest.java │ │ │ ├── CategoryAxis3DTest.java │ │ │ ├── CategoryAxisTest.java │ │ │ ├── CategoryLabelPositionTest.java │ │ │ ├── CategoryLabelPositionsTest.java │ │ │ ├── CategoryLabelWidthTypeTest.java │ │ │ ├── CategoryTickTest.java │ │ │ ├── ColorBarTest.java │ │ │ ├── CyclicNumberAxisTest.java │ │ │ ├── DateAxisTest.java │ │ │ ├── DateTickMarkPositionTest.java │ │ │ ├── DateTickTest.java │ │ │ ├── DateTickUnitTest.java │ │ │ ├── ExtendedCategoryAxisTest.java │ │ │ ├── LogAxisTest.java │ │ │ ├── LogarithmicAxisTest.java │ │ │ ├── MarkerAxisBandTest.java │ │ │ ├── ModuloAxisTest.java │ │ │ ├── MonthDateFormatTest.java │ │ │ ├── NumberAxis3DTest.java │ │ │ ├── NumberAxisTest.java │ │ │ ├── NumberTickUnitTest.java │ │ │ ├── PeriodAxisLabelInfoTest.java │ │ │ ├── PeriodAxisTest.java │ │ │ ├── QuarterDateFormatTest.java │ │ │ ├── SegmentedTimelineAdditionalTest.java │ │ │ ├── SegmentedTimelineTest.java │ │ │ ├── StandardTickUnitSourceTest.java │ │ │ ├── SubCategoryAxisTest.java │ │ │ ├── SymbolAxisTest.java │ │ │ ├── TickUnitsTest.java │ │ │ ├── ValueAxisTest.java │ │ │ └── package.html │ │ ├── block │ │ │ ├── AbstractBlockTest.java │ │ │ ├── BlockBorderTest.java │ │ │ ├── BlockContainerTest.java │ │ │ ├── BorderArrangementTest.java │ │ │ ├── ColorBlockTest.java │ │ │ ├── ColumnArrangementTest.java │ │ │ ├── EmptyBlockTest.java │ │ │ ├── FlowArrangementTest.java │ │ │ ├── GridArrangementTest.java │ │ │ ├── LabelBlockTest.java │ │ │ ├── LineBorderTest.java │ │ │ └── RectangleConstraintTest.java │ │ ├── entity │ │ │ ├── CategoryItemEntityTest.java │ │ │ ├── CategoryLabelEntityTest.java │ │ │ ├── ContourEntityTest.java │ │ │ ├── LegendItemEntityTest.java │ │ │ ├── PieSectionEntityTest.java │ │ │ ├── StandardEntityCollectionTest.java │ │ │ ├── TickLabelEntityTest.java │ │ │ └── XYItemEntityTest.java │ │ ├── imagemap │ │ │ ├── DynamicDriveToolTipTagFragmentGeneratorTest.java │ │ │ ├── ImageMapUtilitiesTest.java │ │ │ ├── OverLIBToolTipTagFragmentGeneratorTest.java │ │ │ ├── StandardToolTipTagFragmentGeneratorTest.java │ │ │ └── StandardURLTagFragmentGeneratorTest.java │ │ ├── labels │ │ │ ├── BoxAndWhiskerToolTipGeneratorTest.java │ │ │ ├── BoxAndWhiskerXYToolTipGeneratorTest.java │ │ │ ├── BubbleXYItemLabelGeneratorTest.java │ │ │ ├── CustomXYItemLabelGeneratorTest.java │ │ │ ├── HighLowItemLabelGeneratorTest.java │ │ │ ├── IntervalCategoryItemLabelGeneratorTest.java │ │ │ ├── IntervalCategoryToolTipGeneratorTest.java │ │ │ ├── ItemLabelAnchorTest.java │ │ │ ├── ItemLabelPositionTest.java │ │ │ ├── MultipleXYSeriesLabelGeneratorTest.java │ │ │ ├── StandardCategoryItemLabelGeneratorTest.java │ │ │ ├── StandardCategorySeriesLabelGeneratorTest.java │ │ │ ├── StandardCategoryToolTipGeneratorTest.java │ │ │ ├── StandardContourToolTipGeneratorTest.java │ │ │ ├── StandardPieSectionLabelGeneratorTest.java │ │ │ ├── StandardPieToolTipGeneratorTest.java │ │ │ ├── StandardXYItemLabelGeneratorTest.java │ │ │ ├── StandardXYSeriesLabelGeneratorTest.java │ │ │ ├── StandardXYToolTipGeneratorTest.java │ │ │ ├── StandardXYZToolTipGeneratorTest.java │ │ │ ├── SymbolicXYItemLabelGeneratorTest.java │ │ │ └── package.html │ │ ├── needle │ │ │ ├── ArrowNeedleTest.java │ │ │ ├── LineNeedleTest.java │ │ │ ├── LongNeedleTest.java │ │ │ ├── MeterNeedleTest.java │ │ │ ├── MiddlePinNeedleTest.java │ │ │ ├── PinNeedleTest.java │ │ │ ├── PlumNeedleTest.java │ │ │ ├── PointerNeedleTest.java │ │ │ ├── ShipNeedleTest.java │ │ │ └── WindNeedleTest.java │ │ ├── package.html │ │ ├── panel │ │ │ └── CrosshairOverlayTest.java │ │ ├── plot │ │ │ ├── CategoryMarkerTest.java │ │ │ ├── CategoryPlotTest.java │ │ │ ├── ColorPaletteTest.java │ │ │ ├── CombinedDomainCategoryPlotTest.java │ │ │ ├── CombinedDomainXYPlotTest.java │ │ │ ├── CombinedRangeCategoryPlotTest.java │ │ │ ├── CombinedRangeXYPlotTest.java │ │ │ ├── CompassPlotTest.java │ │ │ ├── ContourPlotTest.java │ │ │ ├── CrosshairTest.java │ │ │ ├── DefaultDrawingSupplierTest.java │ │ │ ├── FastScatterPlotTest.java │ │ │ ├── IntervalMarkerTest.java │ │ │ ├── MarkerTest.java │ │ │ ├── MeterIntervalTest.java │ │ │ ├── MeterPlotTest.java │ │ │ ├── MultiplePiePlotTest.java │ │ │ ├── MyPlotChangeListener.java │ │ │ ├── PieLabelRecordTest.java │ │ │ ├── PiePlot3DTest.java │ │ │ ├── PiePlotTest.java │ │ │ ├── PlotOrientationTest.java │ │ │ ├── PlotRenderingInfoTest.java │ │ │ ├── PlotTest.java │ │ │ ├── PolarPlotTest.java │ │ │ ├── RingPlotTest.java │ │ │ ├── SpiderWebPlotTest.java │ │ │ ├── ThermometerPlotTest.java │ │ │ ├── ValueMarkerTest.java │ │ │ ├── XYPlotTest.java │ │ │ ├── dial │ │ │ │ ├── AbstractDialLayerTest.java │ │ │ │ ├── ArcDialFrameTest.java │ │ │ │ ├── DialBackgroundTest.java │ │ │ │ ├── DialCapTest.java │ │ │ │ ├── DialPlotTest.java │ │ │ │ ├── DialPointerTest.java │ │ │ │ ├── DialTextAnnotationTest.java │ │ │ │ ├── DialValueIndicatorTest.java │ │ │ │ ├── MyDialLayerChangeListener.java │ │ │ │ ├── StandardDialFrameTest.java │ │ │ │ ├── StandardDialRangeTest.java │ │ │ │ └── StandardDialScaleTest.java │ │ │ └── package.html │ │ ├── renderer │ │ │ ├── AbstractRendererTest.java │ │ │ ├── AreaRendererEndTypeTest.java │ │ │ ├── DefaultPolarItemRendererTest.java │ │ │ ├── GrayPaintScaleTest.java │ │ │ ├── LookupPaintScaleTest.java │ │ │ ├── OutlierTest.java │ │ │ ├── RendererChangeDetector.java │ │ │ ├── RendererUtilitiesTest.java │ │ │ ├── category │ │ │ │ ├── AbstractCategoryItemRendererTest.java │ │ │ │ ├── AreaRendererTest.java │ │ │ │ ├── BarRenderer3DTest.java │ │ │ │ ├── BarRendererTest.java │ │ │ │ ├── BoxAndWhiskerRendererTest.java │ │ │ │ ├── CategoryStepRendererTest.java │ │ │ │ ├── DefaultCategoryItemRendererTest.java │ │ │ │ ├── GanttRendererTest.java │ │ │ │ ├── GradientBarPainterTest.java │ │ │ │ ├── GroupedStackedBarRendererTest.java │ │ │ │ ├── IntervalBarRendererTest.java │ │ │ │ ├── LayeredBarRendererTest.java │ │ │ │ ├── LevelRendererTest.java │ │ │ │ ├── LineAndShapeRendererTest.java │ │ │ │ ├── LineRenderer3DTest.java │ │ │ │ ├── MinMaxCategoryRendererTest.java │ │ │ │ ├── ScatterRendererTest.java │ │ │ │ ├── StackedAreaRendererTest.java │ │ │ │ ├── StackedBarRenderer3DTest.java │ │ │ │ ├── StackedBarRendererTest.java │ │ │ │ ├── StandardBarPainterTest.java │ │ │ │ ├── StatisticalBarRendererTest.java │ │ │ │ ├── StatisticalLineAndShapeRendererTest.java │ │ │ │ └── WaterfallBarRendererTest.java │ │ │ ├── package.html │ │ │ └── xy │ │ │ │ ├── AbstractXYItemRendererTest.java │ │ │ │ ├── CandlestickRendererTest.java │ │ │ │ ├── ClusteredXYBarRendererTest.java │ │ │ │ ├── DeviationRendererTest.java │ │ │ │ ├── GradientXYBarPainterTest.java │ │ │ │ ├── HighLowRendererTest.java │ │ │ │ ├── RendererXYPackageUtils.java │ │ │ │ ├── StackedXYAreaRenderer2Test.java │ │ │ │ ├── StackedXYAreaRendererTest.java │ │ │ │ ├── StackedXYBarRendererTest.java │ │ │ │ ├── StandardXYBarPainterTest.java │ │ │ │ ├── StandardXYItemRendererTest.java │ │ │ │ ├── VectorRendererTest.java │ │ │ │ ├── WindItemRendererTest.java │ │ │ │ ├── XYAreaRenderer2Test.java │ │ │ │ ├── XYAreaRendererTest.java │ │ │ │ ├── XYBarRendererTest.java │ │ │ │ ├── XYBlockRendererTest.java │ │ │ │ ├── XYBoxAndWhiskerRendererTest.java │ │ │ │ ├── XYBubbleRendererTest.java │ │ │ │ ├── XYDifferenceRendererTest.java │ │ │ │ ├── XYDotRendererTest.java │ │ │ │ ├── XYErrorRendererTest.java │ │ │ │ ├── XYLine3DRendererTest.java │ │ │ │ ├── XYLineAndShapeRendererTest.java │ │ │ │ ├── XYShapeRendererTest.java │ │ │ │ ├── XYSplineRendererTest.java │ │ │ │ ├── XYStepAreaRendererTest.java │ │ │ │ ├── XYStepRendererTest.java │ │ │ │ └── YIntervalRendererTest.java │ │ ├── title │ │ │ ├── CompositeTitleTest.java │ │ │ ├── DateTitleTest.java │ │ │ ├── ImageTitleTest.java │ │ │ ├── LegendGraphicTest.java │ │ │ ├── LegendTitleTest.java │ │ │ ├── PaintScaleLegendTest.java │ │ │ ├── ShortTextTitleTest.java │ │ │ ├── TextTitleTest.java │ │ │ └── TitleTest.java │ │ ├── urls │ │ │ ├── CustomCategoryURLGeneratorTest.java │ │ │ ├── CustomPieURLGeneratorTest.java │ │ │ ├── CustomXYURLGeneratorTest.java │ │ │ ├── StandardCategoryURLGeneratorTest.java │ │ │ ├── StandardPieURLGeneratorTest.java │ │ │ ├── StandardXYURLGeneratorTest.java │ │ │ ├── TimeSeriesURLGeneratorTest.java │ │ │ └── package.html │ │ └── util │ │ │ ├── HMSNumberFormatTest.java │ │ │ ├── LineUtilitiesTest.java │ │ │ ├── LogFormatTest.java │ │ │ └── RelativeDateFormatTest.java │ │ └── data │ │ ├── ComparableObjectItemTest.java │ │ ├── ComparableObjectSeriesTest.java │ │ ├── DataUtilitiesTest.java │ │ ├── DefaultKeyedValueTest.java │ │ ├── DefaultKeyedValues2DTest.java │ │ ├── DefaultKeyedValuesTest.java │ │ ├── DomainOrderTest.java │ │ ├── KeyToGroupMapTest.java │ │ ├── KeyedObjectTest.java │ │ ├── KeyedObjects2DTest.java │ │ ├── KeyedObjectsTest.java │ │ ├── RangeTest.java │ │ ├── RangeTypeTest.java │ │ ├── category │ │ ├── CategoryToPieDatasetTest.java │ │ ├── DefaultCategoryDatasetTest.java │ │ ├── DefaultIntervalCategoryDatasetTest.java │ │ └── SlidingCategoryDatasetTest.java │ │ ├── function │ │ ├── LineFunction2DTest.java │ │ ├── NormalDistributionFunction2DTest.java │ │ ├── PolynomialFunction2DTest.java │ │ └── PowerFunction2DTest.java │ │ ├── gantt │ │ ├── SlidingGanttCategoryDatasetTest.java │ │ ├── TaskSeriesCollectionTest.java │ │ ├── TaskSeriesTest.java │ │ ├── TaskTest.java │ │ └── XYTaskDatasetTest.java │ │ ├── general │ │ ├── DatasetGroupTest.java │ │ ├── DatasetUtilitiesTest.java │ │ ├── DefaultHeatMapDatasetTest.java │ │ ├── DefaultKeyedValueDatasetTest.java │ │ ├── DefaultKeyedValues2DDatasetTest.java │ │ ├── DefaultKeyedValuesDatasetTest.java │ │ ├── DefaultPieDatasetTest.java │ │ ├── IntervalDataItem.java │ │ └── TestIntervalCategoryDataset.java │ │ ├── package.html │ │ ├── statistics │ │ ├── BoxAndWhiskerCalculatorTest.java │ │ ├── BoxAndWhiskerItemTest.java │ │ ├── DefaultBoxAndWhiskerCategoryDatasetTest.java │ │ ├── DefaultBoxAndWhiskerXYDatasetTest.java │ │ ├── DefaultMultiValueCategoryDatasetTest.java │ │ ├── DefaultStatisticalCategoryDatasetTest.java │ │ ├── HistogramBinTest.java │ │ ├── HistogramDatasetTest.java │ │ ├── MeanAndStandardDeviationTest.java │ │ ├── RegressionTest.java │ │ ├── SimpleHistogramBinTest.java │ │ ├── SimpleHistogramDatasetTest.java │ │ ├── StatisticsTest.java │ │ └── package.html │ │ ├── time │ │ ├── DateRangeTest.java │ │ ├── DayTest.java │ │ ├── FixedMillisecondTest.java │ │ ├── HourTest.java │ │ ├── MillisecondTest.java │ │ ├── MinuteTest.java │ │ ├── MonthTest.java │ │ ├── MovingAverageTest.java │ │ ├── QuarterTest.java │ │ ├── SecondTest.java │ │ ├── SimpleTimePeriodTest.java │ │ ├── TimePeriodAnchorTest.java │ │ ├── TimePeriodValueTest.java │ │ ├── TimePeriodValuesCollectionTest.java │ │ ├── TimePeriodValuesTest.java │ │ ├── TimeSeriesCollectionTest.java │ │ ├── TimeSeriesDataItemTest.java │ │ ├── TimeSeriesTest.java │ │ ├── TimeTableXYDatasetTest.java │ │ ├── WeekTest.java │ │ ├── YearTest.java │ │ ├── ohlc │ │ │ ├── OHLCItemTest.java │ │ │ ├── OHLCSeriesCollectionTest.java │ │ │ ├── OHLCSeriesTest.java │ │ │ └── OHLCTest.java │ │ └── package.html │ │ └── xy │ │ ├── CategoryTableXYDatasetTest.java │ │ ├── DefaultHighLowDatasetTest.java │ │ ├── DefaultIntervalXYDatasetTest.java │ │ ├── DefaultOHLCDatasetTest.java │ │ ├── DefaultTableXYDatasetTest.java │ │ ├── DefaultWindDatasetTest.java │ │ ├── DefaultXYDatasetTest.java │ │ ├── DefaultXYZDatasetTest.java │ │ ├── IntervalXYDelegateTest.java │ │ ├── MatrixSeriesCollectionTest.java │ │ ├── MatrixSeriesTest.java │ │ ├── OHLCDataItemTest.java │ │ ├── TableXYDatasetTest.java │ │ ├── VectorDataItemTest.java │ │ ├── VectorSeriesCollectionTest.java │ │ ├── VectorSeriesTest.java │ │ ├── VectorTest.java │ │ ├── XIntervalDataItemTest.java │ │ ├── XIntervalSeriesCollectionTest.java │ │ ├── XIntervalSeriesTest.java │ │ ├── XYBarDatasetTest.java │ │ ├── XYCoordinateTest.java │ │ ├── XYDataItemTest.java │ │ ├── XYIntervalDataItemTest.java │ │ ├── XYIntervalSeriesCollectionTest.java │ │ ├── XYIntervalSeriesTest.java │ │ ├── XYIntervalTest.java │ │ ├── XYSeriesCollectionTest.java │ │ ├── XYSeriesTest.java │ │ ├── YIntervalDataItemTest.java │ │ ├── YIntervalSeriesCollectionTest.java │ │ ├── YIntervalSeriesTest.java │ │ ├── YIntervalTest.java │ │ └── YWithXIntervalTest.java ├── logs │ ├── pso_N_3T_10_log.txt │ └── pso_N_7T_12_log.txt └── src │ ├── GraphVisualization │ ├── GraphUI.java │ └── ParticlesLineGraph.java │ ├── ParticleSwarmOptimization │ ├── Optimizer.java │ ├── Particle.java │ └── Swarm.java │ └── VehicleRoutingProblem │ ├── DistributionModel.java │ ├── Simulator.java │ ├── Store.java │ └── Vehicle.java ├── INFO6205FinalProjectPresentation.pdf └── README.md /AlgorithmsProject_CVRP_PSO/lib/gs-core-1.3/gs-core-1.3-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/gs-core-1.3/gs-core-1.3-javadoc.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/gs-core-1.3/gs-core-1.3-javadoc.jar.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | Version: GnuPG v2 3 | 4 | iQIcBAABCAAGBQJVI6+uAAoJEFcic6tDtcUcu0EP/RtRPTW7LUOk+hksopEB9xwL 5 | +kFRVW4avd7mor+rucRBP5VzxdVDAXFSFI7+mkRtkYrnbMhURxaUu4L+POT6I9k8 6 | 9hZUSoXIUirHKP3VJti78n+Js4pXeXTYsjz0KOwW5lz2RSvrqi9CcdbHrtOq0YLw 7 | 57btDVxrLQXCA4nWsUzMhghx3cJiqSZDeDjZRMVD+X29ZZBVq19mTX4XmMWjA/2P 8 | ywjurxkwfcMAOkPoA6oOmiybWCAdiChQEvIZuUDfgHDtmKnsbi+HI0aJVKKCjBs2 9 | ZyIOqgUIUVv2xxOan37SlA+xurjfIM9TiE2i5DPr1mIlRcX5D6tLZFZ6vcQdyBJW 10 | eNAaHhwQHeQQauymQSFQrukQJM8uAc7MSSXSCxMZhAHlidcYqftjAdyHhji3RbC5 11 | gGNxPBEm9mh1HV/+LDZVkPYXsiaw9IDLiP8+mzueH+K05bfdNv+Ot2jsaYAnjO0h 12 | SEfJxYx6q2tGdRWrw/okOMnLMGACWi9tMjZSoAQWQYcdeFgWdpUE95L0CaWSe8Ty 13 | SfU6gnNcsayvrC9fRjV7BU+jjsmeTCho+nLtfAAYKYnB1O4Mxhdcu8pJQ43gD83f 14 | kFYzmL1d2mowOcrFzTysKLpQaJrrAE/8b6s8SL0HPvQVUncAi7JLEEzRt3inyRSZ 15 | ECTeHIl0NLYdNc/dW/8G 16 | =O35H 17 | -----END PGP SIGNATURE----- 18 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/gs-core-1.3/gs-core-1.3-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/gs-core-1.3/gs-core-1.3-sources.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/gs-core-1.3/gs-core-1.3-sources.jar.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | Version: GnuPG v2 3 | 4 | iQIcBAABCAAGBQJVI6+uAAoJEFcic6tDtcUczfoP/Rx4C/o7pNjWUXzAeIQfVZUH 5 | lGvrJxCAhQpti+kA0p8FymXXK274kMVTalCgKE4vQjPCpA4g4Bv77RjHvIVMTg+e 6 | ZHt8CpR31FbsF5hgiWASjduosQjaP5sFdTbzXzBYFOhSv6qkZ+soaP0Y61mNXv7x 7 | jqtKBGf66VtYvN3wFloCoUJ2AA8yFE9f54484QSi/Qkdb/CGh5cPQwisqwiD2hDh 8 | XTQBHF5QoKZEZJ5Cw139C2atPOS2ECvcNRpYAwbf73zcH/LsRkgRbPJNKmiMDkgq 9 | YeuDXctDRsg4Eyzl0NNhi5rr71R3GpYA1W7rLMg6wN57txKXVfiCDxl8KI+YjM+P 10 | Ef5h5qpJ2p5zF1eOrq6Ymnxl+7MoOKeRzKKPWSZEx2Au9lsEo11JOQ3Y76xQDe5P 11 | MqmmiaYKsOZAJXOf7vKUu7KUKe6gn2xUt+ybm22ExFPLf7pUs5jpT/AlzSJZJOia 12 | zfIWh6UJYGsfqVRnJ69ngW1hqoZRSoL3273cbuVlt/FuSZjhHlh3fyL0sFtWHvpp 13 | 7BDkkQL2gRo5lq2D1tKUuLuF4DlaNlZEuBK1XgdUhOoTG4DYQAjODCsX168vIxwG 14 | KuaYTmmnUZml2/17M6jkH/gRDo8VK9a969R1ll2BsydXnsGvTb7U3+6JqzWC2uyU 15 | x0EKyV4jfdd+9LZ0Eri8 16 | =wzS0 17 | -----END PGP SIGNATURE----- 18 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/gs-core-1.3/gs-core-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/gs-core-1.3/gs-core-1.3.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/gs-core-1.3/gs-core-1.3.jar.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | Version: GnuPG v2 3 | 4 | iQIcBAABCAAGBQJVI6+ZAAoJEFcic6tDtcUcezEP/RGwl9a6SQu6UZjc+t8MOKvN 5 | xWAj/qnnndApZw60P7g3QfA9QB1rU2aSZpIVNFlYSODNBdTgXEMgdb3o2dqCN1by 6 | 9k+Oc5pNzOatuloc00wfgwf4p757Hnuu/W9dtD7oLloCc8Zlm9yqyzCXQCz7ol0P 7 | wMhCf6lCTOri2BrfnlehGQ7rrgm34jKmio9XEi3wCqBaZ3d/EA29moZk8tVsucM3 8 | utV4dpT75khMgVxFT6+HtJMT7+MyfmBJt7aMNs/EzCs5y+lUs8n0D+vSMzbtYUxf 9 | 6WtYsjmjfBo9cJj7r2Y7p2JdK2RoDeVbxzENJMwb+qY+E0/65DnEheetfvkqKNcR 10 | HOlFRMP2J/Sky1nB6b6gZTJi6HWcx5s4sgwyHhFlGhA1Q1GwbfttM6GD3Rtt4Ka3 11 | rNAXdnHelg7Db0jKHCKiwcnjhSsZvdi6XajDuNp75BDbT0EzN/oHNRtBSJO8r9mp 12 | rEJSiO6wmf9Z1bVFQMqJCbu6vygiEHS5F2h3APi8RF5k43O7JKxnGYwz3oZc7zgR 13 | KY4U1RNPeXoCQH0cc4Uh+PcXb9wkIA5s7wxr1S1Sya9MzV75echWSL76IpLvpDC0 14 | ue0Bz2xQitvQfUDOBKguYJLH1mro7sd+hT879wUJkWQneW3rhkblDmUmtgvGl2GI 15 | mynsXW9gD2+8j1MTaB3O 16 | =4j/o 17 | -----END PGP SIGNATURE----- 18 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/gs-core-1.3/gs-core-1.3.pom.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | Version: GnuPG v2 3 | 4 | iQIcBAABCAAGBQJVI6+uAAoJEFcic6tDtcUcm8AP/0fcGiTlJ+LjpLMaubtjuTtS 5 | Exze8FFjsPa79IC7nssnf0rm3FDC1GAr59T6HNPT7N8r/BJVppD+Vq2MZcRUSNMS 6 | vbgVdwc2je5x7+jliDTBaiPZSeke2GJNMTHT2mMWm/Vga8J59V5U/Gvt1xLRwIUq 7 | pI4jytV+bhryGdE00xNTqoSJrAXrae3Pxp5tb2d8wmJ74HaBe/em7Mb82pUb/G/S 8 | ZdC51iSmmo1uArUOHzDT/V70y38ZO4uKkKzF8oc+WsiBe7Ig+gTBhCE6aqTjC2FB 9 | odAxQiJ2Tvo/qeNgUWYflnDPySVOAG/MNshnintv+zSOqhQaOSKTVoXRS6k0s0nm 10 | j2KbC7B6BuGNDYHZ0TyO4LixMOgNwqMp8JN4jvWMxSG7BBzaU9pHrvsJHJdLj6Yw 11 | WLUG7kY6AmYOdaYVWJqf/aOAv+f4NDURwAvU5ORbNYIycA+xbsuVye7C5c3c+DQ9 12 | bqkylyeJq7Ba/+OIeVkyZF7dmN3g+x8FJFPixFOsRTYqKD4I+Rr5/aZWOGVQoJbv 13 | tFttShT4pu/DbywQ890JCaPtKdf2WojR8ZNgkcofkUND83ntnhm2FJz+H5mEWOw7 14 | 8AWJiz3irYA5d+bYO7Whww9CsH292XlCUdUypIybFKv+ryF5HvQmGpZxnqPp2Ey7 15 | dyxfozrh/Uhdh+bVLZhK 16 | =8JdF 17 | -----END PGP SIGNATURE----- 18 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/gs-ui-1.3/gs-ui-1.3-javadoc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/gs-ui-1.3/gs-ui-1.3-javadoc.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/gs-ui-1.3/gs-ui-1.3-javadoc.jar.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | Version: GnuPG v2 3 | 4 | iQIcBAABCAAGBQJVI85YAAoJEFcic6tDtcUcvnoP+QFbmAiUFHOY5NzZ+TXory/+ 5 | vPys1yfmc3bDtCrVoSSY7IDBXOKHgWyFbpHvIriFB/03NdbOWeKv4wkwLzaZ1UQB 6 | 03fuHjLbzzXgXx5gtH5kjzar04DOMVOt/uAZObtgF+zksHbeJgTX5I/puj2qXYSM 7 | T1d7wh2hqufxwXJFSHfsKO0RS4Q35eqRJffprZG7o40j/1Jew05dxm+7n7jkNyF8 8 | zXtAEUAd8XCFxyxM/4Mig6aXJn1TZ4GOPgRt/N5WH3MJ12qPIakPUNU7qCyK+VHS 9 | habbi07pmQ0q9maYp1zKcVauOd3jNeDr1jHrvJRZN2oK70jBhNNRMn26WNKU8SFt 10 | YwlxlO3jkzmuKlML2C86eQpLYnqiqEY7080i0BOvWgWuPIFQgBrUOLnBqaNiEl+H 11 | wy0OTWRXtx9nmsIl08OdmqF5IYIyXnUA3Rg9WdxM6dL2HANyNiBf0TT/g7zhrjID 12 | YxZaSI9sb/DFBg6CDAqKR9B9qWo6SceLEX4LYK6uL3Ar9u9QCM+v7gDf+5vs97nt 13 | tQkT/uhPKgFfFuU1Cflm3qlh7/x63qgtq0qT5P3cljKl3Zr7qVGdOuLlqGJyvV6w 14 | A/7pnGK3QeVa8ygir/QZQDoNXla6busU7NWFGcejRL6smoJ5GBPh3bDIIrJyB74/ 15 | j263b0HdiYvEsQHo8V/B 16 | =ddRY 17 | -----END PGP SIGNATURE----- 18 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/gs-ui-1.3/gs-ui-1.3-sources.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/gs-ui-1.3/gs-ui-1.3-sources.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/gs-ui-1.3/gs-ui-1.3-sources.jar.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | Version: GnuPG v2 3 | 4 | iQIcBAABCAAGBQJVI84tAAoJEFcic6tDtcUcP2kP/0YnPFOaKqxqIio68UwHZp7Y 5 | fMfp1a1pJt1Tu93fyr/zGA7MCrJ020pwW4V8qFJrsc/Bz2mV8Q013vTTBc3g/zmy 6 | aClw1WItf5IrNIJ25s66U2xmqzBSzcEKjPIeI6aQfBRa10yQbLQ80hw0XtzoS55p 7 | +ZgtgnoXfgvEDsOi/n5pc24P37JHbX2ZHVHFu2+hi5vhVdih8BUnRntf5Kc/t47r 8 | d/vGEIhEe89UgWJOwsrkkaMDI/9O1/c9A7uvJIrT/nvRLBEbQsyeuZZsmCM0gP5d 9 | ugetYRj6Y8/j0nMspQqYfVATdlTKQCr5rUhREB49hatU8mt9bBIkdXzpYl784zX5 10 | Vi5HmVBLQx9ETBgItSYfifsT80kcnYu+azJzSXSQiP2Kpyphi4+Za7o+jTGucW/M 11 | ncKciq3kZOVlBpodn2k4Bl0x+uDwMrvyF4roR7X05OPwAQQpRS6Wz4hnDFz24pbC 12 | vSggRZtoDLWdluY9/VgPpzMkC9BZnzwY8mgHX7GMq+gQFF9/BTJhvDx2MTU8qOF0 13 | P149EIiYL4d47L7djtiale07b3KN1muMeh2d3yFSAwJfL/X2I98eZDgOwz15EGWG 14 | 7KyHeJSUzOjfhIk6OGqmol3WrERsE6RRmdOHFfboCdd2yLbtCgiBBve9GnwE63ew 15 | p7sjKHK+gu8hobzH8Jla 16 | =8Uq+ 17 | -----END PGP SIGNATURE----- 18 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/gs-ui-1.3/gs-ui-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/gs-ui-1.3/gs-ui-1.3.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/gs-ui-1.3/gs-ui-1.3.jar.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | Version: GnuPG v2 3 | 4 | iQIcBAABCAAGBQJVI84tAAoJEFcic6tDtcUcGOYQAJxx6xLnze2kiv6dWSaiJMwc 5 | Lq5IrJPAWn1Ed89g3Ay2E8cYSTwYxGafBkGTyL3KyefS6W2xrnJjhHOj4GckZqSU 6 | O8x6vLJL5/i4uXY3EtN594nRH23U1fXCFz+oVXBREprrUZ9Z+x3DiD3zzjMHCI9H 7 | Js349kbLXkTM9JNdA9I7Zf4rJyENwQznG5Q7X6s2YHebulh9rdJnG9aVGm66Hx5+ 8 | AktlcctqwUd9fdK50lo+UBHOI/RksX88WR+JyNh/mMzRdLJuHyxotAPQl9sXnJdq 9 | qX7P4vI2i4V2parPuk4JFe0weJ0NQCYL//0E81KPABj2F859K6DtsoHn8Zqw5dtw 10 | J0Luj5GNGPirQRPgDdmVc7ewKAKOdJAFmejMAR8ShKNK9E1D+gp/wgbzgsQqy9t0 11 | f47d2dWOk1WZa5Q5LzU8gpJc4IV7t6EAbbSMj4uS+gkVWpTwRnQcUMl0dsOg8fw+ 12 | Z9bL6zenamyD8boE7e/jCrDMaYvZCm/hD9Y9qtWupbYYX3c95Yy3WTeQSITBAq11 13 | gdHG6GDPdb3A1wm+h8oI2xVLgB/7Al1a/jnppnDuORZBhAdLKXevef6dYyIa5Ppc 14 | PzYNwjqbybARLW9HtjGtKqGNt8EzMYyipC9eaGYEqJC2ZkcYLKhSg1UM1ItJTXmr 15 | 6AuIR0liKH3Oyp+Q4KxH 16 | =Qoor 17 | -----END PGP SIGNATURE----- 18 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/gs-ui-1.3/gs-ui-1.3.pom.asc: -------------------------------------------------------------------------------- 1 | -----BEGIN PGP SIGNATURE----- 2 | Version: GnuPG v2 3 | 4 | iQIcBAABCAAGBQJVI84tAAoJEFcic6tDtcUcTBoP/2T2fMfMkEevIGuDkvwnDTlv 5 | M2EVbe8zvUuYoX9AWtvv5K2SmsilCfjhw1mfgcMOa2ckgs2ke6F6u+cAY08yKd/7 6 | prFUxN8BAVmIp7Z7Dk+APOjfyTKbxCug/zESseN6WUb1Q2z2fsSdDLvHE5olTM+J 7 | Kbi0w7xrBKD0/4WZ17v/P8FC2u2mtQAi9a4/OAqR7bmh09CRfEI9M4RfPfyg/Rjx 8 | O/vxdyPO8TdRlDYfrL992At+GvsEPO1nfRJPP2CHHZEB9xWziET0MDQxrLFicE8G 9 | sRVZuJV+Hp7Z7XDWk63VTtcECCrQbUjX1PGGXlIZsamouUosnuf9WeCtlpgQAYQd 10 | zK6O394Z2rHCF/2ZxIKJle6z0wr7YRg+X/O8nLO4scLPU+JYMn3jKmAQBFGEKJKe 11 | l5lVbYRlRPgFt0wk13G5X+/nvhOrfN+IF1BASGLC/R0aybqz7iPnYxWEDJrFayPq 12 | zJeQJsClq5QeZYgYlNATB/9hKgEjuvryUE+mQ7ZMiD0zYAvcfcOqPetqNxWv/O7r 13 | JYZetfE0CDPEr+p6IOCGX0xghFxpMk+fMxTwbnD7nUqXubykfqWytZXlMap01ycG 14 | okVD0zDcCTKA4n5EeCGeCzyrDbvq8xjm/fR1uO3qjzKSNbpX/3cjtwp70kH/xQT8 15 | r6Lo4IgCX7utoBQTDZrT 16 | =lZ+K 17 | -----END PGP SIGNATURE----- 18 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/ant/build.properties: -------------------------------------------------------------------------------- 1 | ########################################################### 2 | # 3 | # Global settings ... 4 | jcommon.name=jcommon 5 | jcommon.version=1.0.23 6 | 7 | # 8 | # This defines the compiler settings. Optimizing would remove 9 | # the debug information, so we dont do that. This may be selfish, 10 | # but these settings guarantee better bug-reports :) 11 | build.debug=true 12 | build.optimize=false 13 | build.deprecation=true 14 | 15 | # 16 | # Make sure that JDK 1.6 compatible class files are generated 17 | build.target=1.6 18 | build.source=1.6 19 | 20 | # 21 | # All path settings are relative to the project root directory 22 | # (..) 23 | # 24 | libdir=lib 25 | junit-dir=lib 26 | 27 | # 28 | # If you specify a non-empty string, then dont forget the 29 | # trailing / here or your results wont fit your expectations... 30 | # 31 | targetdir= 32 | manifest-lib-prefix=lib/ 33 | 34 | ########################################################### 35 | # 36 | # Used libraries ... 37 | 38 | # Used by: core libraries 39 | 40 | # Used by: module-misc-beanshell 41 | jaxp-jar-file=gnujaxp.jar 42 | servlet-jar-file=servlet.jar 43 | 44 | junit-jar-file=junit.jar 45 | 46 | 47 | ############################################################## 48 | # 49 | # Generated files ... 50 | jcommon-jar-file=${jcommon.name}-${jcommon.version}.jar 51 | jcommon-bundle-file=${jcommon.name}-${jcommon.version}-bundle.jar 52 | jcommon-junit-jar-file=${jcommon.name}-${jcommon.version}-junit.jar 53 | jcommon-xml-jar-file=${jcommon.name}-xml-${jcommon.version}.jar 54 | jcommon-xml-bundle-file=${jcommon.name}-xml-${jcommon.version}-bundle.jar 55 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/checkstyle/javadocs.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/checkstyle/lines.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/checkstyle/properties.txt: -------------------------------------------------------------------------------- 1 | checkstyle.allow.tabs no 2 | checkstyle.maxlinelen 100 3 | checkstyle.maxparameters 20 4 | checkstyle.rcurly alone 5 | checkstyle.ignore.public.in.interface yes 6 | checkstyle.javadoc.checkUnusedThrows yes 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/checkstyle/whitespace.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/jcommon-1.0.23.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/jcommon-1.0.23.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/jcommon-xml-1.0.23.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/jcommon-xml-1.0.23.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/lib/junit.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/lib/junit.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/com/keypoint/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | A package containing the PNG encoder written by J David Eisenberg. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/base/jcommon.properties: -------------------------------------------------------------------------------- 1 | # 2 | # The minimum loglevel that is logged 3 | org.jfree.base.LogLevel=Debug 4 | 5 | # 6 | # Where to log. Give a classname of a valid LogTarget implementation. 7 | # If the name is invalid, no logging is done. 8 | org.jfree.base.LogTarget=*none* 9 | 10 | # 11 | # Do not initialize the logging. 12 | org.jfree.base.LogAutoInit=false 13 | 14 | # 15 | # Should the debugging system be disabled by default. This option will suppress all 16 | # output, no single line of debug information will be printed. If you want to remove 17 | # System.out-debugging on the server side, try to switch to a Log4J-LogTarget instead. 18 | org.jfree.base.NoDefaultDebug=false 19 | 20 | # 21 | # Which ClassLoader to use for loading external resources and classes. 22 | # One of "ThreadContext" or "CallerContext". 23 | org.jfree.ClassLoader=ThreadContext 24 | 25 | # 26 | # Applies a workaround to fix a JDK bug. When the value is set to auto, 27 | # This is enabled if the JDK is not version 1.4 or higher. 28 | org.jfree.text.UseDrawRotatedStringWorkaround=auto 29 | 30 | # 31 | # Applies a workaround to fix a JDK bug. When the value is set to auto, 32 | # This is disabled if the JDK is not version 1.4 or higher. 33 | org.jfree.text.UseFontMetricsGetStringBounds=auto 34 | 35 | 36 | # 37 | # Known extra modules. Do not edit and do not delete the following lines. 38 | # 39 | # That module loading mechanism is not really extensible. A better 40 | # implementation might solve that at a later time. 41 | org.jfree.jcommon.modules.logger.Log4J.Module=org.jfree.logger.java14.Java14LogModule 42 | org.jfree.jcommon.modules.logger.Java14Logging.Module=org.jfree.logger.log4j.Log4JLogModule 43 | org.jfree.jcommon.modules.logger.JakartaLogging.Module=org.jfree.logger.jcl.JakartaLogModule 44 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/base/log/module.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Support for logging. 3 | # 4 | 5 | module-info: 6 | name: base-logging-module 7 | producer: The JFreeChart project - www.jfree.org/jcommon 8 | description: Initialializer to configure the log system and to provide 9 | a facility for logging to the System.out stream. 10 | version.major: 1 11 | version.minor: 0 12 | version.patchlevel: 0 13 | subsystem: logging 14 | 15 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/base/modules/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Module definitions: 4 |

5 | By default the JFreeReport base package and JCommon are included. 6 | Additionally the J2SDK package exists in the system by default. 7 | A module that requires a specific java version should create a 8 | dependency to the module "J2SDK" and set the required version 9 | numbers. 10 |

11 | Known modules: 12 | org.jfree.report.modules.output.csv.CSVModule 13 | org.jfree.report.modules.output.xml.XMLModule 14 | org.jfree.report.modules.output.base.OutputBaseModule 15 | org.jfree.report.modules.output.csv.CSVModule 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/base/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Base level classes. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/date/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Date classes. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/demo/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Demo code for the JCommon class library. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/io/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Input/output related classes. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/layout/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Custom layout managers. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The root package for the JCommon class library. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/resources/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | General localised resources for the JCommon class library. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/text/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Utility classes relating to text. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/threads/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Additional support for multi-threaded programs. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/ui/Drawable.java: -------------------------------------------------------------------------------- 1 | /* ======================================================================== 2 | * JCommon : a free general purpose class library for the Java(tm) platform 3 | * ======================================================================== 4 | * 5 | * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jcommon/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 25 | * in the United States and other countries.] 26 | * 27 | * ------------- 28 | * Drawable.java 29 | * ------------- 30 | * (C) Copyright 2002-2004, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * $Id: Drawable.java,v 1.4 2005/11/16 15:58:41 taqua Exp $ 36 | * 37 | * Changes (from 30-May-2002) 38 | * -------------------------- 39 | * 25-Jun-2002 : Version 1 (DG); 40 | * 41 | */ 42 | 43 | package org.jfree.ui; 44 | 45 | import java.awt.Graphics2D; 46 | import java.awt.geom.Rectangle2D; 47 | 48 | /** 49 | * An interface for an object that can draw itself within an area on a Graphics2D. 50 | * 51 | * @author David Gilbert 52 | */ 53 | public interface Drawable { 54 | 55 | /** 56 | * Draws the object. 57 | * 58 | * @param g2 the graphics device. 59 | * @param area the area inside which the object should be drawn. 60 | */ 61 | public void draw(Graphics2D g2, Rectangle2D area); 62 | 63 | } 64 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/ui/LocalizationBundle.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.ui.ui ResourceBundle properties file 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 31-Aug-2003 : Initial version (AL); 6 | # 7 | 8 | Attributes=Attributes: 9 | B=B: 10 | Bold=Bold 11 | Bottom=Bottom 12 | Font=Font: 13 | Insets=Insets: 14 | Italic=Italic 15 | L=L: 16 | Left=Left 17 | No_Font_Selected=No font selected. 18 | R=R: 19 | Right=Right 20 | Size=Size: 21 | T=T: 22 | Top=Top 23 | Help=Help 24 | OK=OK 25 | Cancel=Cancel 26 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/ui/LocalizationBundle_de.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.ui.ui ResourceBundle properties file - german version 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 15-Mar-2004 : Initial version (Christian W. Zuckschwerdt); 6 | # 7 | 8 | Attributes=Attribute: 9 | B=U: 10 | Bold=Fett 11 | Bottom=Unten 12 | Font=Schrift: 13 | Insets=R\u00e4nder: 14 | Italic=Kursiv 15 | L=L: 16 | Left=Links 17 | No_Font_Selected=Keine Schrift gew\u00e4hlt. 18 | R=R: 19 | Right=Rechts 20 | Size=Gr\u00f6\u00dfe: 21 | T=O: 22 | Top=Oben 23 | Help=Hilfe 24 | OK=OK 25 | Cancel=Abbrechen 26 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/ui/LocalizationBundle_es.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.ui.ui ResourceBundle properties file spanish 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 14-Oct-2004 : Initial version: Leopoldo Federico P�rtile (Grupo de Procesamiento Digital de Im�genes) 6 | # Universidad Tecnol�gica Nacional - Facultad Regional Resistencia, Argentina 7 | 8 | Attributes=Atributos: 9 | B=Inf: 10 | Bold=Negrita 11 | Bottom=Inferior 12 | Font=Fuente: 13 | Insets=M�rgenes: 14 | Italic=Cursiva 15 | L=Izq: 16 | Left=Izquierda 17 | No_Font_Selected=No se seleccion\00F3 ninguna fuente. 18 | R=Der: 19 | Right=Derecha 20 | Size=Tama\u00f1o: 21 | T=Sup: 22 | Top=Superior 23 | Help=Ayuda 24 | OK=Aceptar 25 | Cancel=Cancelar 26 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/ui/LocalizationBundle_fr.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.ui.ui ResourceBundle properties file - french version 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 31-Aug-2003 : Initial version (AL); 6 | # 7 | 8 | Attributes=Attributs : 9 | B=B : 10 | Bold=Gras 11 | Bottom=Bas 12 | Font=Police : 13 | Insets=Position : 14 | Italic=Italique 15 | L=G : 16 | Left=Gauche 17 | No_Font_Selected=Aucune police n'a \u00E9t\u00E9 s\u00E9lectionn\u00E9e. 18 | R=D : 19 | Right=Droite 20 | Size=Taille : 21 | T=H : 22 | Top=Haut 23 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/ui/LocalizationBundle_pt_PT.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file - portuguese version 2 | # 3 | # Changes (from 09-Set-2003) 4 | # -------------------------- 5 | # 09-Set-2003 : Initial version (Eduardo Ramalho); 6 | # 7 | 8 | Attributes=Atributos: 9 | B=B: 10 | Bold=Negrito 11 | Bottom=Fundo 12 | Font=Fonte: 13 | Insets=Posi\u00e7\u00e3o: 14 | Italic=It\u00e1lico 15 | L=E: 16 | Left=Esquerda 17 | No_Font_Selected=Nenhuma fonte est\u00e1 seleccionada. 18 | R=D: 19 | Right=Direita 20 | Size=Tamanho: 21 | T=T: 22 | Top=Topo 23 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/ui/about/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Classes for providing information about an application. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/ui/about/resources/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Resource bundles for items that require localisation. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/ui/action/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Provides an Action facility matching that introduced in JDK 1.3 (JCommon aims to run on JDK 1.2.2 or later). 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/ui/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Utility classes for creating user interfaces. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/ui/tabbedui/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Provides classes for tabbed user interfaces. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/util/PublicCloneable.java: -------------------------------------------------------------------------------- 1 | /* ======================================================================== 2 | * JCommon : a free general purpose class library for the Java(tm) platform 3 | * ======================================================================== 4 | * 5 | * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jcommon/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 25 | * in the United States and other countries.] 26 | * 27 | * -------------------- 28 | * PublicCloneable.java 29 | * -------------------- 30 | * (C) Copyright 2003, 2004, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * $Id: PublicCloneable.java,v 1.3 2005/10/18 13:24:19 mungady Exp $ 36 | * 37 | * Changes 38 | * ------- 39 | * 18-Aug-2003 : Version 1 (DG); 40 | * 41 | */ 42 | 43 | package org.jfree.util; 44 | 45 | /** 46 | * An interface that exposes the clone() method. 47 | * @author David Gilbert 48 | */ 49 | public interface PublicCloneable extends Cloneable { 50 | 51 | /** 52 | * Returns a clone of the object. 53 | * 54 | * @return A clone. 55 | * 56 | * @throws CloneNotSupportedException if cloning is not supported for some reason. 57 | */ 58 | public Object clone() throws CloneNotSupportedException; 59 | 60 | } 61 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/util/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | General utility classes. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/attributehandlers/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Provides attribute handlers for standard object types. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/factory/objects/URLClassFactory.java: -------------------------------------------------------------------------------- 1 | /* ======================================================================== 2 | * JCommon : a free general purpose class library for the Java(tm) platform 3 | * ======================================================================== 4 | * 5 | * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jcommon/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 25 | * in the United States and other countries.] 26 | * 27 | * -------------------- 28 | * URLClassFactory.java 29 | * -------------------- 30 | * (C)opyright 2003, 2004, by Thomas Morgner and Contributors. 31 | * 32 | * Original Author: Thomas Morgner; 33 | * Contributor(s): David Gilbert (for Object Refinery Limited); 34 | * 35 | * $Id: URLClassFactory.java,v 1.3 2005/11/14 11:04:33 mungady Exp $ 36 | * 37 | * Changes (from 19-Feb-2003) 38 | * ------------------------- 39 | * 19-Feb-2003 : Added standard header and Javadocs (DG); 40 | * 29-Apr-2003 : Distilled from the JFreeReport project and moved into JCommon 41 | * 42 | */ 43 | 44 | package org.jfree.xml.factory.objects; 45 | 46 | import java.net.URL; 47 | 48 | /** 49 | * A URL class factory. 50 | * 51 | * @author Thomas Morgner 52 | */ 53 | public class URLClassFactory extends ClassFactoryImpl { 54 | 55 | /** 56 | * Creates a new URL class factory. 57 | */ 58 | public URLClassFactory() { 59 | registerClass(URL.class, new URLObjectDescription()); 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/factory/objects/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Object descriptions for the parser. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/generator/SourceCollector.java: -------------------------------------------------------------------------------- 1 | /* ======================================================================== 2 | * JCommon : a free general purpose class library for the Java(tm) platform 3 | * ======================================================================== 4 | * 5 | * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jcommon/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 25 | * in the United States and other countries.] 26 | * 27 | * -------------------- 28 | * SourceCollector.java 29 | * -------------------- 30 | * (C)opyright 2003, 2004, by Thomas Morgner and Contributors. 31 | * 32 | * Original Author: Thomas Morgner; 33 | * Contributor(s): David Gilbert (for Object Refinery Limited); 34 | * 35 | * $Id: SourceCollector.java,v 1.2 2005/10/18 13:32:20 mungady Exp $ 36 | * 37 | * Changes 38 | * ------- 39 | * 21.06.2003 : Initial version 40 | * 41 | */ 42 | 43 | package org.jfree.xml.generator; 44 | 45 | /** 46 | * A source collector returns a collection of {@link Class} objects. 47 | */ 48 | public interface SourceCollector { 49 | 50 | /** 51 | * Returns the classes that fall within the scope of the source collector. 52 | * 53 | * @return The classes. 54 | */ 55 | public Class[] getClasses(); 56 | 57 | } 58 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/generator/attributehandler.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Maps the attribute type class to the handler implementation 3 | # 4 | org.jfree.chart.axis.AxisLocation=org.jfree.chart.xml.attributehandlers.AxisLocationAttributeHandler 5 | org.jfree.chart.renderer.ItemLabelAnchor=org.jfree.chart.xml.attributehandlers.ItemLabelAnchorAttributeHandler 6 | org.jfree.chart.plot.PlotOrientation=org.jfree.chart.xml.attributehandlers.PlotOrientationAttributeHandler 7 | org.jfree.ui.TextAnchor=org.jfree.chart.xml.attributehandlers.TextAnchorAttributeHandler 8 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/generator/generator.properties: -------------------------------------------------------------------------------- 1 | # 2 | # Specifies the directory containing the sources ... 3 | sourcedirectory=C:\\Documents and Settings\\sony\\My Documents\\eclipse-SDK-3.0M6-win32\\eclipse\\workspace\\jfreechart-cvs\\ 4 | 5 | # 6 | # Where to generate the definition files ... 7 | targetfile=C:\\model.xml 8 | 9 | # 10 | # From where to load the attribute handler definitions... 11 | attributedefinition=attributehandler.properties 12 | 13 | # 14 | # The list of base classes we ignore when collecting the sources. 15 | # Use this to remove unnecessary references. 16 | ignore.baseclass.0=junit.framework.TestCase 17 | ignore.baseclass.1=java.util.ResourceBundle 18 | ignore.baseclass.2=java.awt.Component 19 | ignore.baseclass.3=org.jfree.chart.ChartColor 20 | ignore.baseclass.4=org.jfree.chart.ChartFactory 21 | ignore.baseclass.5=org.jfree.chart.ChartUtilities 22 | ignore.baseclass.6=java.lang.Throwable 23 | ignore.baseclass.7=java.util.EventObject 24 | ignore.baseclass.8=javax.swing.text.AbstractDocument 25 | 26 | # 27 | # The list of packages we ignore. 28 | ignore.package.0=com.keypoint 29 | ignore.package.1=org.jfree.xml 30 | ignore.package.2=org.jfree.threads 31 | ignore.package.3=org.jfree.resources 32 | ignore.package.4=org.jfree.util 33 | ignore.package.5=org.jfree.layout 34 | ignore.package.6=org.jfree.io 35 | ignore.package.7=org.jfree.demo 36 | ignore.package.8=org.jfree.chart.demo 37 | ignore.package.9=org.jfree.chart.event 38 | ignore.package.10=org.jfree.chart.junit 39 | ignore.package.11=org.jfree.chart.resources 40 | ignore.package.12=org.jfree.chart.ui 41 | ignore.package.13=org.jfree.data.xml 42 | ignore.package.14=org.jfree.chart.servlet 43 | ignore.package.15=org.jfree.chart.renderer.junit 44 | ignore.package.16=org.jfree.chart.xml 45 | 46 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/generator/model/IgnoredPropertyInfo.java: -------------------------------------------------------------------------------- 1 | /* ======================================================================== 2 | * JCommon : a free general purpose class library for the Java(tm) platform 3 | * ======================================================================== 4 | * 5 | * (C) Copyright 2000-2005, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jcommon/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Java is a trademark or registered trademark of Sun Microsystems, Inc. 25 | * in the United States and other countries.] 26 | * 27 | * ------------------------ 28 | * IgnoredPropertyInfo.java 29 | * ------------------------ 30 | * (C)opyright 2003, 2004, by Thomas Morgner and Contributors. 31 | * 32 | * Original Author: Thomas Morgner; 33 | * Contributor(s): David Gilbert (for Object Refinery Limited); 34 | * 35 | * $Id: IgnoredPropertyInfo.java,v 1.2 2005/10/18 13:32:37 mungady Exp $ 36 | * 37 | * Changes 38 | * ------------------------- 39 | * 21.06.2003 : Initial version 40 | * 41 | */ 42 | 43 | package org.jfree.xml.generator.model; 44 | 45 | /** 46 | * Represents an ignored property. 47 | */ 48 | public class IgnoredPropertyInfo extends PropertyInfo { 49 | 50 | /** 51 | * Creates a new instance. 52 | * 53 | * @param name the property name. 54 | */ 55 | public IgnoredPropertyInfo(final String name) { 56 | super(name, Object.class); 57 | } 58 | 59 | } 60 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/generator/model/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Contains the classes describing the class model used in the 5 | JFreeChart XML-parser and writer. 6 | 7 | 8 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/generator/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | XML generatorBeanInfoBeanInfoBeanInfo. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | XML parser. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/parser/coretypes/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | XML writers for some core classes. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/parser/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | XML parser. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/util/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Utility classes for the XML framework. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/writer/coretypes/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Writers for some core classes. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/org/jfree/xml/writer/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Core classes for writing XML files. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jcommon-1.0.23/jcommon-1.0.23/src/main/java/overview.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | JCommon is a free general purpose library for Java that is shared by 5 | several other projects, including JFreeChart and Pentaho Reporting (formerly 6 | JFreeReport). 7 |

8 | Please visit http://www.jfree.org/jcommon/index.html 10 | for the latest information about JCommon. 11 |

12 | SPECIAL NOTICE: BOTH JFREECHART AND PENTAHO REPORTING ARE MOVING TOWARDS 13 | ELIMINATING THEIR DEPENDENCY ON JCOMMON. AFTER THIS HAPPENS, JCOMMON WILL 14 | MOST LIKELY BE "RETIRED". 15 | 16 | 17 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/checkstyle/javadocs.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/checkstyle/lines.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/checkstyle/properties.txt: -------------------------------------------------------------------------------- 1 | checkstyle.allow.tabs no 2 | checkstyle.maxlinelen 100 3 | checkstyle.maxparameters 20 4 | checkstyle.rcurly alone 5 | checkstyle.ignore.public.in.interface yes 6 | checkstyle.javadoc.checkUnusedThrows yes 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/checkstyle/whitespace.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/AreaRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/AreaRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/BarRenderer3DSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/BarRenderer3DSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/BarRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/BarRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/BoxAndWhiskerRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/BoxAndWhiskerRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/CandleStickRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/CandleStickRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/CategoryStepRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/CategoryStepRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/ClusteredXYBarRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/ClusteredXYBarRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/DeviationRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/DeviationRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/DialPlotSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/DialPlotSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/GanttRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/GanttRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/GroupedStackedBarRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/GroupedStackedBarRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/HighLowRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/HighLowRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/IntervalBarRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/IntervalBarRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/LayeredBarRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/LayeredBarRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/LevelRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/LevelRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/LineAndShapeRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/LineAndShapeRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/LineRenderer3DSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/LineRenderer3DSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/MinMaxCategoryRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/MinMaxCategoryRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/PiePlotSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/PiePlotSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/ScatterRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/ScatterRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StackedAreaRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StackedAreaRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StackedBarRenderer3DSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StackedBarRenderer3DSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StackedBarRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StackedBarRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StackedXYAreaRenderer2Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StackedXYAreaRenderer2Sample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StackedXYAreaRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StackedXYAreaRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StackedXYBarRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StackedXYBarRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StatisticalBarRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StatisticalBarRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StatisticalLineRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/StatisticalLineRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/VectorRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/VectorRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/WaterfallBarRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/WaterfallBarRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/WindItemRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/WindItemRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYAreaRenderer2Sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYAreaRenderer2Sample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYAreaRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYAreaRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYBarRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYBarRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYBlockRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYBlockRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYBoxAndWhiskerRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYBoxAndWhiskerRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYBubbleRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYBubbleRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYDifferenceRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYDifferenceRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYDotRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYDotRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYErrorRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYErrorRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYLineAndShapeRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYLineAndShapeRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYShapeRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYShapeRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYSplineRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYSplineRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYStepAreaRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYStepAreaRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYStepRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/XYStepRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/YIntervalRendererSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/docfiles/YIntervalRendererSample.png -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/jfreechart-1.0.19-demo.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/jfreechart-1.0.19-demo.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/hamcrest-core-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/hamcrest-core-1.3.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/jcommon-1.0.23.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/jcommon-1.0.23.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/jfreechart-1.0.19-experimental.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/jfreechart-1.0.19-experimental.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/jfreechart-1.0.19-swt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/jfreechart-1.0.19-swt.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/jfreechart-1.0.19.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/jfreechart-1.0.19.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/jfreesvg-2.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/jfreesvg-2.0.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/junit-4.11.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/junit-4.11.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/orsoncharts-1.4-eval-nofx.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/orsoncharts-1.4-eval-nofx.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/orsonpdf-1.6-eval.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/orsonpdf-1.6-eval.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/servlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/servlet.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/swtgraphics2d.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/lib/swtgraphics2d.jar -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/Effect3D.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ------------- 28 | * Effect3D.java 29 | * ------------- 30 | * (C) Copyright 2002-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 05-Nov-2002 : Version 1 (DG); 38 | * 14-Nov-2002 : Modified to have independent x and y offsets (DG); 39 | * 40 | */ 41 | 42 | package org.jfree.chart; 43 | 44 | /** 45 | * An interface that should be implemented by renderers that use a 3D effect. 46 | * This allows the axes to mirror the same effect by querying the renderer. 47 | */ 48 | public interface Effect3D { 49 | 50 | /** 51 | * Returns the x-offset (in Java2D units) for the 3D effect. 52 | * 53 | * @return The offset. 54 | */ 55 | public double getXOffset(); 56 | 57 | /** 58 | * Returns the y-offset (in Java2D units) for the 3D effect. 59 | * 60 | * @return The offset. 61 | */ 62 | public double getYOffset(); 63 | } 64 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LegendItemSource.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * --------------------- 28 | * LegendItemSource.java 29 | * --------------------- 30 | * (C) Copyright 2005-2008, by Object Refinery Limited and Contributors. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 23-Feb-2005 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart; 42 | 43 | /** 44 | * A source of legend items. A {@link org.jfree.chart.title.LegendTitle} will 45 | * maintain a list of sources (often just one) from which it obtains legend 46 | * items. 47 | */ 48 | public interface LegendItemSource { 49 | 50 | /** 51 | * Returns a (possibly empty) collection of legend items. 52 | * 53 | * @return The legend item collection (never null). 54 | */ 55 | public LegendItemCollection getLegendItems(); 56 | 57 | } 58 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 31-Aug-2003 : Initial version (AL); 6 | # 27-Nov-2013 : Added PNG..., PDF..., Save_as and SVG... (DG) 7 | # 8 | 9 | Auto_Range=Auto Range 10 | All_Axes=Both Axes 11 | Chart=Chart 12 | Chart_Properties=Chart Properties 13 | Copy=Copy 14 | Domain_Axis=Domain Axis 15 | FILE_EXISTS_CONFIRM_OVERWRITE=The file already exists, are you sure you want to overwrite it? 16 | PNG...=PNG... 17 | PNG_Image_Files=PNG Image Files 18 | PDF...=PDF... 19 | PDF_Files=PDF Files 20 | Print...=Print... 21 | Properties...=Properties... 22 | Range_Axis=Range Axis 23 | Save_as=Save as 24 | Save_as...=Save as... 25 | SVG...=SVG... 26 | SVG_Files=SVG Files 27 | Zoom_In=Zoom In 28 | Zoom_Out=Zoom Out 29 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle_cs.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 31-Aug-2003 : Initial version (AL); 6 | # 20-Mar-2010 : Czech translation; 7 | # 8 | 9 | Auto_Range=Auto rozm\u011br 10 | All_Axes=Ob\u011b osy 11 | Chart=Chart 12 | Chart_Properties=Vlastnosti grafu 13 | Copy=Kop\u00edrovat 14 | Domain_Axis=Osa oblasti 15 | PNG_Image_Files=Obr\u00e1zky PNG 16 | Print...=Tisk... 17 | Properties...=Vlastnosti... 18 | Save_as...=Ulo\u017eit jako... 19 | Range_Axis=Osa rozsahu 20 | Zoom_In=P\u0159ibl\u00ed\u017eit 21 | Zoom_Out=Odd\u00e1lit 22 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle_de.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file - german version 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 31-Aug-2003 : Initial version (AL); 6 | # 15-Mar-2004 : Revised version (Christian W. Zuckschwerdt); 7 | # 8 | 9 | Auto_Range=Autojustage 10 | All_Axes=Beide Achsen 11 | Chart=Diagramm 12 | Chart_Properties=Diagramm-Eigenschaften 13 | Copy=Kopieren 14 | Domain_Axis=Horizontale Achse 15 | PNG_Image_Files=PNG Datei (Portable Network Graphics) (*.png) 16 | Print...=Drucken... 17 | Properties...=Eigenschaften... 18 | Save_as...=Speichern unter... 19 | Range_Axis=Vertikale Achse 20 | Zoom_In=Hineinzoomen 21 | Zoom_Out=Herauszoomen 22 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle_es.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file - spanish version 2 | # 3 | # Changes (from 16-Dec-2003) 4 | # -------------------------- 5 | # 16-Dec-2003 : Initial Version: Complejo Hospitalario Universitario Juan Canalejo 6 | # 7 | 8 | Auto_Range=Escala autom\u00E1tica 9 | All_Axes=Todos los ejes 10 | Chart=Chart 11 | Chart_Properties=Propiedades del gr\u00E1fico 12 | Copy=Copiar 13 | Domain_Axis=Eje horizontal 14 | PNG_Image_Files=Formato PNG (Portable Network Graphics) (*.png) 15 | Print...=Imprimir... 16 | Properties...=Propiedades... 17 | Save_as...=Grabar como... 18 | Range_Axis=Eje vertical 19 | Zoom_In=Acercar 20 | Zoom_Out=Alejar 21 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle_fr.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file - french version 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 31-Aug-2003 : Initial version (AL); 6 | # 7 | 8 | Auto_Range=Echelle automatique 9 | All_Axes=Les deux axes 10 | Chart=Chart 11 | Chart_Properties=Propri\u00E9t\u00E9s du graphique 12 | Copy=Copier 13 | Domain_Axis=Axe horizontal 14 | PNG_Image_Files=Format PNG (Portable Network Graphics) (*.png) 15 | Print...=Imprimer... 16 | Properties...=Propri\u00E9t\u00E9s... 17 | Save_as...=Enregistrer sous... 18 | Range_Axis=Axe vertical 19 | Zoom_In=Zoom avant 20 | Zoom_Out=Zoom arri\u00E8re 21 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle_it.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file - italian version 2 | Auto_Range=Dimensiona Automaticamente 3 | All_Axes=Entrambi gli Assi 4 | Chart=Chart 5 | Chart_Properties=Propriet\u00E0 del Grafico 6 | Copy=Copia 7 | Domain_Axis=Asse Orizzontale 8 | PNG_Image_Files=Immagine PNG 9 | Print...=Stampa... 10 | Properties...=Propriet\u00E0... 11 | Save_as...=Salva Come... 12 | Range_Axis=Asse Verticale 13 | Zoom_In=Ingrandisci 14 | Zoom_Out=Rimpicciolisci 15 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle_ja.properties: -------------------------------------------------------------------------------- 1 | 2 | All_Axes=\u4e21\u8ef8 3 | Auto_Range=\u81ea\u52d5\u30b5\u30a4\u30b8\u30f3\u30b0 4 | Chart=\u30c1\u30e3\u30fc\u30c8 5 | Chart_Properties=\u30c1\u30e3\u30fc\u30c8 \u30d7\u30ed\u30d1\u30c6\u30a3 6 | Copy=\u30b3\u30d4\u30fc 7 | Domain_Axis=\u5206\u985e\u8ef8 8 | PNG_Image_Files=PNG \u30a4\u30e1\u30fc\u30b8\u30d5\u30a1\u30a4\u30eb 9 | Print...=\u5370\u5237... 10 | Properties...=\u30d7\u30ed\u30d1\u30c6\u30a3... 11 | Range_Axis=\u6570\u5024\u8ef8 12 | Save_as...=\u5225\u540d\u3067\u4fdd\u5b58... 13 | Zoom_In=\u30ba\u30fc\u30e0\u30a4\u30f3 14 | Zoom_Out=\u30ba\u30fc\u30e0\u30a2\u30a6\u30c8 15 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle_nl.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 24-Mar-2003 : Translated into Dutch 6 | # 31-Aug-2003 : Initial version (AL); 7 | # 8 | 9 | Auto_Range=Automatisch bereik 10 | All_Axes=Beide assen 11 | Chart=Chart 12 | Chart_Properties=Eigenschappen 13 | Copy=Kopi\u00EBren 14 | Domain_Axis=Horizontale As 15 | PNG_Image_Files=PNG afbeelding 16 | Print...=Afdrukken... 17 | Properties...=Eigenschappen... 18 | Save_as...=Opslaan als... 19 | Range_Axis=Verticale As 20 | Zoom_In=Inzoomen 21 | Zoom_Out=Uitzoomen 22 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle_pl.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file 2 | # 3 | # Changes (from 15-Mar-2004) 4 | # -------------------------- 5 | # 15-Mar-2004 : Initial version (Kuba Duda); 6 | # 7 | 8 | Auto_Range=Automatyczny zakres 9 | All_Axes=Obie osie 10 | Chart=Chart 11 | Chart_Properties=W\u0142a\u015bciwo\u015bci wykresu 12 | Copy=Kopiuj 13 | Domain_Axis=O\u015b pozioma 14 | PNG_Image_Files=Pliki graficzne PNG 15 | Print...=Drukuj... 16 | Properties...=W\u0142a\u015bciwo\u015bci... 17 | Save_as...=Zapisz jako... 18 | Range_Axis=O\u015b pionowa 19 | Zoom_In=Powi\u0119ksz 20 | Zoom_Out=Pomniejsz 21 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle_pt_BR.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file - portuguese version 2 | # 3 | # Changes (from 24-May-2007) 4 | # -------------------------- 5 | # 24-May-2007 : Initial version (Leonardo Alves Machado); 6 | # 7 | 8 | Auto_Range=Escala autom\u00E1tica 9 | All_Axes=Todos os eixos 10 | Chart=Chart 11 | Chart_Properties=Propriedades do gr\u00E1fico 12 | Copy=Copiar 13 | Domain_Axis=Eixo horizontal 14 | PNG_Image_Files=Formato PNG (Portable Network Graphics) (*.png) 15 | Print...=Imprimir... 16 | Properties...=Propriedades... 17 | Save_as...=Salvar como... 18 | Range_Axis=Eixo vertical 19 | Zoom_In=Ampliar 20 | Zoom_Out=Reduzir 21 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle_pt_PT.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file - portuguese version 2 | # 3 | # Changes (from 09-Set-2003) 4 | # -------------------------- 5 | # 09-Set-2003 : Initial version (ER); 6 | # 7 | 8 | Auto_Range=Escala autom\u00E1tica 9 | All_Axes=Todos os eixos 10 | Chart=Chart 11 | Chart_Properties=Propriedades do gr\u00E1fico 12 | Copy=Copiar 13 | Domain_Axis=Eixo horizontal 14 | PNG_Image_Files=Formato PNG (Portable Network Graphics) (*.png) 15 | Print...=Imprimir... 16 | Properties...=Propriedades... 17 | Save_as...=Gravar como... 18 | Range_Axis=Eixo vertical 19 | Zoom_In=Aproximar 20 | Zoom_Out=Afastar 21 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle_ru.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file 2 | # 3 | # Changes (from 10-Nov-2003) 4 | # -------------------------- 5 | # 10-Nov-2003 : Initial version (AL); 6 | # 7 | 8 | Auto_Range=\u0410\u0432\u0442\u043e\u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 9 | All_Axes=\u041f\u043e \u0432\u0441\u0435\u043c \u043e\u0441\u044f\u043c 10 | Chart=Chart 11 | Chart_Properties=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0433\u0440\u0430\u0444\u0438\u043a\u0430 12 | Copy=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c 13 | Domain_Axis=\u041f\u043e \u0433\u043e\u0440\u0438\u0437\u043e\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u0441\u0438 14 | PNG_Image_Files=PNG \u0444\u0430\u0439\u043b 15 | Print...=\u041f\u0435\u0447\u0430\u0442\u044c... 16 | Properties...=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438... 17 | Save_as...=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043a\u0430\u043a... 18 | Range_Axis=\u041f\u043e \u0432\u0435\u0440\u0442\u0438\u043a\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u0441\u0438 19 | Zoom_In=\u041f\u0440\u0438\u0431\u043b\u0438\u0437\u0438\u0442\u044c 20 | Zoom_Out=\u041e\u0442\u0434\u0430\u043b\u0438\u0442\u044c 21 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file 2 | # 3 | # Changes 4 | # ------- 5 | # 29-Jun-2005 : Initial version, see: http://www.jfree.org/phpBB2/viewtopic.php?t=13495; 6 | # 7 | 8 | Auto_Range=\u81ea\u52a8\u8c03\u6574 9 | All_Axes=\u6240\u6709\u8f74 10 | Chart=Chart 11 | Chart_Properties=\u56fe\u8868\u5c5e\u6027 12 | Copy=\u590d\u5236 13 | Domain_Axis=\u6c34\u5e73\u8f74 14 | PNG_Image_Files=PNG \u683c\u5f0f\u7684\u56fe\u50cf 15 | Print...=\u6253\u5370 16 | Properties...=\u5c5e\u6027 17 | Save_as...=\u53e6\u5b58\u4e3a 18 | Range_Axis=\u5782\u76f4\u8f74 19 | Zoom_In=\u653e\u5927 20 | Zoom_Out=\u7f29\u5c0f 21 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/LocalizationBundle_zh_TW.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 31-Aug-2003 : Initial version (AL); 6 | # 7 | 8 | Auto_Range=\u81ea\u52d5\u8abf\u6574 9 | All_Axes=\u6240\u6709\u8ef8 10 | Chart=Chart 11 | Chart_Properties=\u5716\u8868\u5167\u5bb9 12 | Copy=\u8907\u88fd 13 | Domain_Axis=\u6a6b\u8ef8 14 | PNG_Image_Files=PNG\u5716\u6a94 15 | Print...=\u5217\u5370 16 | Properties...=\u5167\u5bb9 17 | Save_as...=\u53e6\u5b58\u65b0\u6a94 18 | Range_Axis=\u7e31\u8ef8 19 | Zoom_In=\u653e\u5927 20 | Zoom_Out=\u7e2e\u5c0f 21 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/annotations/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | A framework for adding annotations to charts. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/axis/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Axis classes and interfaces. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/block/EntityBlockParams.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ---------------------- 28 | * EntityBlockParams.java 29 | * ---------------------- 30 | * (C) Copyright 2005-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes: 36 | * -------- 37 | * 19-Apr-2005 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.block; 42 | 43 | /** 44 | * An interface that is used by the draw() method of some {@link Block} 45 | * implementations to determine whether or not to generate entities for the 46 | * items within the block. 47 | */ 48 | public interface EntityBlockParams { 49 | 50 | /** 51 | * Returns a flag that controls whether or not the block should return 52 | * entities for the items it draws. 53 | * 54 | * @return A boolean. 55 | */ 56 | public boolean getGenerateEntities(); 57 | 58 | } 59 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/block/EntityBlockResult.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ---------------------- 28 | * EntityBlockResult.java 29 | * ---------------------- 30 | * (C) Copyright 2005-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes: 36 | * -------- 37 | * 19-Apr-2005 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.block; 42 | 43 | import org.jfree.chart.entity.EntityCollection; 44 | 45 | /** 46 | * Provides access to the {@link EntityCollection} generated when a block is 47 | * drawn. 48 | */ 49 | public interface EntityBlockResult { 50 | 51 | /** 52 | * Returns the entity collection. 53 | * 54 | * @return An entity collection (possibly null). 55 | */ 56 | public EntityCollection getEntityCollection(); 57 | 58 | } 59 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/block/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Blocks and layout classes used extensively by the {@link org.jfree.chart.title.LegendTitle} class. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/demo/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Some basic demos to get you started. A large range of demo applications is 5 | available for download (including source code) with the JFreeChart Developer 6 | Guide. For more information, see: 7 |

8 | 9 | http://www.object-refinery.com/jfreechart/guide.html 10 | 11 |

12 | 13 | 14 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/editor/ChartEditor.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ---------------- 28 | * ChartEditor.java 29 | * ---------------- 30 | * (C) Copyright 2005-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): ; 34 | * 35 | * Changes 36 | * ------- 37 | * 24-Nov-2005 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.editor; 42 | 43 | import javax.swing.JComponent; 44 | 45 | import org.jfree.chart.JFreeChart; 46 | 47 | /** 48 | * A chart editor is typically a {@link JComponent} containing a user interface 49 | * for modifying the properties of a chart. 50 | * 51 | * @see ChartEditorManager#getChartEditor(JFreeChart) 52 | */ 53 | public interface ChartEditor { 54 | 55 | /** 56 | * Applies the changes to the specified chart. 57 | * 58 | * @param chart the chart. 59 | */ 60 | public void updateChart(JFreeChart chart); 61 | 62 | } 63 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/editor/ChartEditorFactory.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ----------------------- 28 | * ChartEditorFactory.java 29 | * ----------------------- 30 | * (C) Copyright 2005-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): ; 34 | * 35 | * Changes 36 | * ------- 37 | * 28-Nov-2005 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.editor; 42 | 43 | import org.jfree.chart.JFreeChart; 44 | 45 | /** 46 | * A factory for creating new {@link ChartEditor} instances. 47 | */ 48 | public interface ChartEditorFactory { 49 | 50 | /** 51 | * Creates an editor for the given chart. 52 | * 53 | * @param chart the chart. 54 | * 55 | * @return A chart editor. 56 | */ 57 | public ChartEditor createEditor(JFreeChart chart); 58 | 59 | } 60 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/editor/LocalizationBundle.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ui.ui ResourceBundle properties file 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 31-Aug-2003 : Initial version (AL); 6 | # 7 | 8 | \:=: 9 | AngleOffset=Angle Offset 10 | Appearance=Appearance 11 | Auto-adjust_range=Auto-adjust range: 12 | Auto-TickUnit_Selection=Auto-Selection of TickUnit 13 | Background=Background: 14 | Background_Color=Background Color 15 | Background_paint=Background paint: 16 | Color=Color: 17 | Color_Bar=Color Bar 18 | Domain_Axis=Domain Axis 19 | Draw_anti-aliased=Draw anti-aliased 20 | Draw_lines=Draw Lines: 21 | Draw_shapes=Draw Shapes: 22 | Edit...=Edit... 23 | Edit_Insets=Edit Insets 24 | Font=Font: 25 | Font_Selection=Font Selection 26 | General=General: 27 | General1=General 28 | Grid_Color=Grid Color 29 | Insets=Insets: 30 | Invert_Palette=Invert Palette: 31 | Label=Label: 32 | Label_Color=Label Color 33 | Label_Insets=Label Insets: 34 | Legend=Legend 35 | Manual_TickUnit_value=TickUnit value 36 | Maximum_range_value=Maximum range value: 37 | Minimum_range_value=Minimum range value: 38 | No_editor_implemented=No editor implemented 39 | Orientation=Orientation: 40 | Other=Other 41 | Outline=Outline: 42 | Outline_Color=Outline Color 43 | Outline_stroke=Outline stroke: 44 | Outline_Paint=Outline paint: 45 | Paint=Paint: 46 | Palette_Selection=Palette Selection 47 | Palette=Palette: 48 | Pen_Stroke_Selection=Pen/Stroke Selection 49 | Plot=Plot 50 | Range=Range 51 | Range_Axis=Range Axis 52 | Select...=Select... 53 | Series_Label_Color=Series Label Color 54 | Series_label_font=Series label font: 55 | Series_label_paint=Series label paint: 56 | Series_Outline_Paint=Series Outline Paint: 57 | Series_Outline_Stroke=Series Outline Stroke: 58 | Series_Paint=Series Paint: 59 | Series_Stroke=Series Stroke: 60 | Show_Legend=Show Legend: 61 | Show_tick_labels=Show tick labels 62 | Show_tick_marks=Show tick marks 63 | Show_Title=Show Title: 64 | Set_palette...=Set palette... 65 | Step_Palette=Step Palette: 66 | Stroke_Selection=Stroke Selection 67 | Text=Text: 68 | Ticks=Ticks 69 | Tick_label_font=Tick label font: 70 | Tick_Label_Insets=Tick Label Insets: 71 | TickUnit=TickUnit 72 | Title=Title 73 | Title_Color=Title Color 74 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/editor/LocalizationBundle_nl.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ui.ui ResourceBundle properties file 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 24-Mar-2003 : Translated into Dutch 6 | # 31-Aug-2003 : Initial version (AL); 7 | # 8 | 9 | \:=: 10 | AngleOffset=Angle Offset 11 | Appearance=Uiterlijk 12 | Auto-adjust_range=Bereik automatisch bepalen 13 | Auto-TickUnit_Selection=Auto-Selection of TickUnit 14 | Background=Achtergrond 15 | Background_Color=Achtergrondkleur 16 | 17 | # "Paint" translated sounds a bit silly IMHO. Since at present only single, 18 | # opaque colors are selectable anyway, lets just call it that -- color. 19 | Background_paint=Achtergrondkleur: 20 | 21 | Color=Kleur: 22 | Color_Bar=Kleurbalk 23 | Domain_Axis=Domein as 24 | Draw_anti-aliased=Kartelrandjes maskeren (anti-aliasing) 25 | Edit...=Wijzig... 26 | Edit_Insets=Wijzig marges 27 | Font=Lettertype: 28 | Font_Selection=Lettertype keuze 29 | General=Algemeen: 30 | General1=Algemeen 31 | Grid_Color=Rasterkleur 32 | Insets=Marges: 33 | Invert_Palette=Palet inverteren: 34 | Label=Label: 35 | Label_Color=Labelkleur 36 | Label_Insets=Labelmarges: 37 | Legend=Legenda 38 | Manual_TickUnit_value=TickUnit value 39 | Maximum_range_value=Hoogste waarde: 40 | Minimum_range_value=Laagste waarde: 41 | No_editor_implemented=Geen editor beschikbaar 42 | Other=Overig 43 | Outline=Rand: 44 | Outline_Color=Randkleur 45 | Outline_stroke=Rand stijl: 46 | Outline_Paint=Randkleur: 47 | Paint=Kleur: 48 | Palette_Selection=Paletkleuze 49 | Palette=Palet: 50 | Pen_Stroke_Selection=Pen/Stijl Keuze 51 | Plot=Diagram 52 | Range=Bereik 53 | Range_Axis=Gegevens as 54 | Select...=Selecteer... 55 | Series_Label_Color=Kleur serienaam 56 | Series_label_font=Lettertype serienaam: 57 | Series_label_paint=Kleur serienaam: 58 | Series_Outline_Paint=Kleur serie-rand: 59 | Series_Outline_Stroke=Stijl serie-rand: 60 | Series_Paint=Kleur v.d. serie: 61 | Series_Stroke=Stijl v.d. serie: 62 | Show_tick_labels=Toon waarde-labels 63 | Show_tick_marks=Toon waarde-streepjes 64 | Set_palette...=Kies palet... 65 | Step_Palette=Stap palet: 66 | Stroke_Selection=Stijlkeuze 67 | Text=Tekst: 68 | Ticks=Waarde-streepjes 69 | TickUnit=TickUnit 70 | Tick_label_font=Lettertype waarde-labes: 71 | Tick_Label_Insets=Waarde-label marges: 72 | Title_Color=Kleur titel 73 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/editor/LocalizationBundle_pl.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ui.ui ResourceBundle properties file 2 | # 3 | # Changes (from 15-Mar-2004) 4 | # -------------------------- 5 | # 15-Mar-2004 : Initial version (Kuba Duda); 6 | # 7 | 8 | \:=: 9 | AngleOffset=Angle Offset 10 | Appearance=Wygl\u0105d 11 | Auto-adjust_range=Automatycznie dostosuj zakres: 12 | Auto-TickUnit_Selection=Auto-Selection of TickUnit 13 | Background=T\u0142o: 14 | Background_Color=Kolor t\u0142a 15 | Background_paint=Wype\u0142nienie t\u0142a: 16 | Color=Kolor: 17 | Color_Bar=Pasek kolor\u00f3w 18 | Domain_Axis=O\u015b domeny 19 | Draw_anti-aliased=Wyg\u0142adzaj kraw\u0119dzie 20 | Edit...=Edytuj... 21 | Edit_Insets=Edytuj wstawki 22 | Font=Czcionka: 23 | Font_Selection=Wyb\u00f3r czcionki 24 | General=Og\u00f3lne: 25 | Grid_Color=Kolor siatki 26 | Insets=Wstawki: 27 | Invert_Palette=Odwr\u00f3\u0107 palet\u0119: 28 | Label=Etykieta: 29 | Label_Color=Kolor etykiet 30 | Label_Insets=Wstawki etykiet: 31 | Legend=Legenda 32 | Manual_TickUnit_value=TickUnit value 33 | Maximum_range_value=Maksymalna warto\u015b\u0107 zakresu: 34 | Minimum_range_value=Minimalna warto\u015b\u0107 zakresu: 35 | No_editor_implemented=Edytor nie zaimplementowany 36 | Other=Inne 37 | Outline=Obrys: 38 | Outline_Color=Kolor konturu 39 | Outline_stroke=Obrys konturu: 40 | Outline_Paint=wype\u0142nienie konturu: 41 | Paint=Wype\u0142nienie: 42 | Palette_Selection=Wyb\u00f3r palety 43 | Palette=Paleta: 44 | Pen_Stroke_Selection=Wyb\u00f3r pi\u00f3ra/obrysu 45 | Plot=Wykres 46 | Range=Zakres 47 | Range_Axis=O\u015b zakresu 48 | Select...=Wybierz... 49 | Series_Label_Color=Kolor etykiety serii 50 | Series_label_font=Czcionka etykiety serii: 51 | Series_label_paint=Wype\u0142nienie etykiety serii: 52 | Series_Outline_Paint=Wype\u0142nienie obrysu serii: 53 | Series_Outline_Stroke=Kolor obrysu serii: 54 | Series_Paint=Wype\u0142nienie serii: 55 | Series_Stroke=Kolor serii: 56 | Show_tick_labels=Pokazuj etykiety skali 57 | Show_tick_marks=Pokazuj znaczniki skali 58 | Set_palette...=Wybierz palet\u0119... 59 | Step_Palette=Paleta krokowa: 60 | Stroke_Selection=Wyb\u00f3r obrysu 61 | Text=Tekst: 62 | Ticks=Podzia\u0142ka 63 | TickUnit=TickUnit 64 | Tick_label_font=Czcionka etykiet podzia\u0142ki: 65 | Tick_Label_Insets=Wstawki etykiet podzia\u0142ki: 66 | Title_Color=Kolor tytu\u0142u 67 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/editor/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Provides a simple (but so far incomplete) framework for editing chart 5 | properties. 6 | 7 | 8 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/encoders/ImageFormat.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ---------------- 28 | * ImageFormat.java 29 | * ---------------- 30 | * (C) Copyright 2004-2008, by Richard Atkinson and Contributors. 31 | * 32 | * Original Author: Richard Atkinson; 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 01-Aug-2004 : Initial version (RA); 38 | * 02-Feb-2007 : Removed author tags all over JFreeChart sources (DG); 39 | * 40 | */ 41 | 42 | package org.jfree.chart.encoders; 43 | 44 | /** 45 | * Interface used for referencing different image formats. 46 | */ 47 | public interface ImageFormat { 48 | 49 | /** Portable Network Graphics - lossless */ 50 | public static String PNG = "png"; 51 | 52 | /** Joint Photographic Experts Group format - lossy */ 53 | public static String JPEG = "jpeg"; 54 | 55 | /** Graphics Interchange Format - lossless, but 256 colour restriction */ 56 | public static String GIF = "gif"; 57 | 58 | } 59 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/encoders/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Classes related to the encoding of charts to different image formats. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/entity/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Classes representing components of (or entities in) a chart. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/event/AnnotationChangeListener.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ------------------------- 28 | * AnnotationChangeListener.java 29 | * ------------------------- 30 | * (C) Copyright 2009, by Object Refinery Limited and Contributors. 31 | * 32 | * Original Author: Peter Kolb (patch 2809117); 33 | * Contributor(s): ; 34 | * 35 | * Changes: 36 | * -------- 37 | * 20-Jun-2009 : Version 1 (PK); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.event; 42 | 43 | import java.util.EventListener; 44 | 45 | import org.jfree.chart.annotations.Annotation; 46 | 47 | /** 48 | * The interface that must be supported by classes that wish to receive 49 | * notification of changes to an {@link Annotation}. 50 | * 51 | * @since 1.0.14 52 | */ 53 | public interface AnnotationChangeListener extends EventListener { 54 | 55 | /** 56 | * Receives notification of an annotation change event. 57 | * 58 | * @param event the event. 59 | * 60 | * @since 1.0.14 61 | */ 62 | public void annotationChanged(AnnotationChangeEvent event); 63 | 64 | } 65 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/event/ChartProgressListener.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * -------------------------- 28 | * ChartProgressListener.java 29 | * -------------------------- 30 | * (C) Copyright 2003-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes (from 24-Aug-2001) 36 | * -------------------------- 37 | * 14-Jan-2003 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.event; 42 | 43 | import java.util.EventListener; 44 | 45 | /** 46 | * The interface that must be supported by classes that wish to receive 47 | * notification of chart progress events. 48 | */ 49 | public interface ChartProgressListener extends EventListener { 50 | 51 | /** 52 | * Receives notification of a chart progress event. 53 | * 54 | * @param event the event. 55 | */ 56 | public void chartProgress(ChartProgressEvent event); 57 | 58 | } 59 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/event/MarkerChangeListener.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ------------------------- 28 | * MarkerChangeListener.java 29 | * ------------------------- 30 | * (C) Copyright 2006-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 05-Sep-2006 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.event; 42 | 43 | import java.util.EventListener; 44 | 45 | import org.jfree.chart.plot.Marker; 46 | 47 | /** 48 | * The interface that must be supported by classes that wish to receive 49 | * notification of changes to a {@link Marker}. 50 | * 51 | * @since 1.0.3 52 | */ 53 | public interface MarkerChangeListener extends EventListener { 54 | 55 | /** 56 | * Receives notification of a marker change event. 57 | * 58 | * @param event the event. 59 | * 60 | * @since 1.0.3 61 | */ 62 | public void markerChanged(MarkerChangeEvent event); 63 | 64 | } 65 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/event/OverlayChangeEvent.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ----------------------- 28 | * OverlayChangeEvent.java 29 | * ----------------------- 30 | * (C) Copyright 2009, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes: 36 | * -------- 37 | * 09-Apr-2009 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.event; 42 | 43 | import java.util.EventObject; 44 | import org.jfree.chart.panel.Overlay; 45 | 46 | /** 47 | * A change event for an {@link Overlay}. 48 | * 49 | * @since 1.0.13 50 | */ 51 | public class OverlayChangeEvent extends EventObject { 52 | 53 | /** 54 | * Creates a new change event. 55 | * 56 | * @param source the event source. 57 | */ 58 | public OverlayChangeEvent(Object source) { 59 | super(source); 60 | } 61 | 62 | } 63 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/event/OverlayChangeListener.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * -------------------------- 28 | * OverlayChangeListener.java 29 | * -------------------------- 30 | * (C) Copyright 2009, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes: 36 | * -------- 37 | * 09-Apr-2009 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.event; 42 | 43 | import java.util.EventListener; 44 | import org.jfree.chart.panel.Overlay; 45 | 46 | /** 47 | * A listener for changes to an {@link Overlay}. 48 | * 49 | * @since 1.0.13 50 | */ 51 | public interface OverlayChangeListener extends EventListener { 52 | 53 | /** 54 | * This method is called to notify a listener of a change event. 55 | * 56 | * @param event the event. 57 | */ 58 | public void overlayChanged(OverlayChangeEvent event); 59 | 60 | } 61 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/event/RendererChangeListener.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * --------------------------- 28 | * RendererChangeListener.java 29 | * --------------------------- 30 | * (C) Copyright 2000-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 23-Oct-2003 : Added standard source header. Fixed DOS encoding problem (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.event; 42 | 43 | import java.util.EventListener; 44 | 45 | /** 46 | * The interface that must be supported by classes that wish to receive 47 | * notification of changes to a renderer. 48 | * 49 | */ 50 | public interface RendererChangeListener extends EventListener { 51 | 52 | /** 53 | * Receives notification of a renderer change event. 54 | * 55 | * @param event the event. 56 | */ 57 | public void rendererChanged(RendererChangeEvent event); 58 | 59 | } 60 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/event/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Event classes and listener interfaces, used to provide a change 5 | notification mechanism so that charts are automatically redrawn 6 | whenever changes are made to any chart component. 7 | 8 | 9 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/fx/chart-viewer.css: -------------------------------------------------------------------------------- 1 | .chart-control { 2 | -fx-skin: "org.jfree.chart.fx.ChartViewerSkin"; 3 | } 4 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/fx/demo/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Basic demo applications showing the use of JFreeChart in JavaFX. 3 | */ 4 | package org.jfree.chart.fx.demo; 5 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/fx/interaction/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Contains classes that implement most of the interactivity for the 3 | * {@link org.jfree.chart.fx.ChartViewer} and 4 | * {@link org.jfree.chart.fx.ChartCanvas} components. 5 | */ 6 | package org.jfree.chart.fx.interaction; 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/fx/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * Core classes that provide JavaFX support for JFreeChart. 3 | */ 4 | package org.jfree.chart.fx; 5 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/gorilla.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manasiladdha/ParticleSwarmOptimization/9d5939f9475e7ec7c8f2d52f752492e455fd28a7/AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/gorilla.jpg -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/imagemap/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Classes, including {@link org.jfree.chart.imagemap.ImageMapUtilities}, for creating HTML image maps. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/labels/CrosshairLabelGenerator.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ---------------------------- 28 | * CrosshairLabelGenerator.java 29 | * ---------------------------- 30 | * (C) Copyright 2009, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes: 36 | * -------- 37 | * 13-Feb-2009 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.labels; 42 | 43 | import org.jfree.chart.plot.Crosshair; 44 | 45 | /** 46 | * A label generator for crosshairs. 47 | * 48 | * @since 1.0.13 49 | */ 50 | public interface CrosshairLabelGenerator { 51 | 52 | /** 53 | * Returns a string that can be used as the label for a crosshair. 54 | * 55 | * @param crosshair the crosshair (null not permitted). 56 | * 57 | * @return The label (possibly null). 58 | */ 59 | public String generateLabel(Crosshair crosshair); 60 | 61 | } 62 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/labels/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Generators and other classes used for the display of item labels and tooltips. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/needle/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | A range of objects that can be used to represent the needle on a 5 | {@link org.jfree.chart.plot.CompassPlot}. 6 | 7 | 8 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Core classes, including {@link org.jfree.chart.JFreeChart} and 5 | {@link org.jfree.chart.ChartPanel}. 6 | 7 | 8 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/panel/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Classes related to the {@link org.jfree.chart.ChartPanel} class. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/CenterTextMode.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2014, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ------------------- 28 | * CenterTextMode.java 29 | * ------------------- 30 | * (C) Copyright 2014, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 28-Feb-2014 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.plot; 42 | 43 | /** 44 | * The mode for the center text on a {@link RingPlot}. 45 | * 46 | * @since 1.0.18 47 | */ 48 | public enum CenterTextMode { 49 | 50 | /** A fixed text item */ 51 | FIXED, 52 | 53 | /** A value item (taken from the first item in the dataset). */ 54 | VALUE, 55 | 56 | /** No center text. */ 57 | NONE 58 | 59 | } 60 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/LocalizationBundle.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.plot.plot ResourceBundle properties file 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 31-Aug-2003 : Initial version (AL); 6 | # 19-Jan-2004 : Added Polar_Plot (DG); 7 | # 8 | 9 | Category_Plot=Category Plot 10 | Combined_Domain_XYPlot=Combined Domain XYPlot 11 | Combined_Range_XYPlot=Combined Range XYPlot 12 | Compass_Plot=Compass Plot 13 | Contour_Plot=Contour Plot 14 | Fast_Scatter_Plot=Fast Scatter Plot 15 | Meter_Plot=Meter Plot 16 | Period_Marker_Plot=Period Marker Plot 17 | Pie_Plot=Pie Plot 18 | Thermometer_Plot=Thermometer Plot 19 | XY_Plot=XY Plot 20 | Polar_Plot=Polar Plot 21 | Too_many_elements=Too many elements 22 | 23 | #Secteurs 3D 24 | Pie_3D_Plot=Pie 3D Plot 25 | 26 | # points of the compass 27 | N=N 28 | E=E 29 | S=S 30 | W=W 31 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/LocalizationBundle_cs.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.plot.plot ResourceBundle properties file 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 31-Aug-2003 : Initial version (AL); 6 | # 19-Jan-2004 : Added Polar_Plot (DG); 7 | # 20-Mar-2010 : Czech translation; 8 | # 9 | 10 | Category_Plot=Graf kategori\u00ed 11 | Combined_Domain_XYPlot=XY graf kombinovan\u00e9 oblasti 12 | Combined_Range_XYPlot=XY graf kombinovan\u00e9ho rozsahu 13 | Compass_Plot=Kompasov\u00fd graf 14 | Contour_Plot=Obrysov\u00fd graf 15 | Fast_Scatter_Plot=Graf s rychl\u00fdm rozptylem 16 | Meter_Plot=Graf s m\u011b\u0159i\u010dem 17 | Period_Marker_Plot=Period Marker Plot 18 | Pie_Plot=Kol\u00e1\u010dov\u00fd graf 19 | Thermometer_Plot=Teplom\u011brov\u00fd graf 20 | XY_Plot=XY graf 21 | Polar_Plot=Pol\u00e1rn\u00ed graf 22 | 23 | #Secteurs 3D 24 | Pie_3D_Plot=3D kol\u00e1\u010dov\u00fd graf 25 | 26 | # points of the compass 27 | N=N 28 | E=E 29 | S=S 30 | W=W 31 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/LocalizationBundle_de.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.plot.plot ResourceBundle properties file - german version 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 31-Aug-2003 : Initial version (AL); 6 | # 15-Mar-2004 : Revised version (Christian W. Zuckschwerdt); 7 | # 8 | 9 | Category_Plot=Kategoriediagramm 10 | Combined_Domain_XYPlot=Rubriken-kombiniertes XY-Diagramm 11 | Combined_Range_XYPlot=Werte-kombiniertes XY-Diagramm 12 | Compass_Plot=Kompass-Diagramm 13 | Contour_Plot=Liniendiagramm 14 | Fast_Scatter_Plot=Streudiagramm 15 | Meter_Plot=Tachometer-Diagramm 16 | Period_Marker_Plot=Zeitreihe 17 | Pie_Plot=Kreisdiagramm 18 | Thermometer_Plot=Thermometer-Diagramm 19 | XY_Plot=XY-Diagramm 20 | Too_many_elements=Zu viele Elemente 21 | 22 | #Secteurs 3D 23 | Pie_3D_Plot=3D-Kreisdiagramm 24 | 25 | # points of the compass 26 | N=N 27 | E=O 28 | S=S 29 | W=W 30 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/LocalizationBundle_es.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.plot.plot ResourceBundle properties file - spanish version 2 | # 3 | # Changes (from 16-Dec-2003) 4 | # -------------------------- 5 | # 16-Dec-2003 : Initial Version: Complejo Hospitalario Universitario Juan Canalejo 6 | # 7 | 8 | Category_Plot=Barras 9 | Combined_Domain_XYPlot=Curvas combinadas por la abcisa 10 | Combined_Range_XYPlot=Curvas combinadas por la ordenada 11 | Compass_Plot=Diagrama del comp\u00a3s 12 | Contour_Plot=Contorno del comp\u00a3s 13 | Fast_Scatter_Plot=Dispersi\u00f3n 14 | Meter_Plot=Diagrama del metro 15 | Period_Marker_Plot=Diagrama del marcador del per�odo 16 | Pie_Plot=Sectores 17 | Thermometer_Plot=Term\u00f3metro 18 | XY_Plot=Curvas 19 | Pie_3D_Plot=Sectores 3D 20 | Too_many_elements=Too many elements 21 | 22 | # points of the compass 23 | N=N 24 | E=E 25 | S=S 26 | W=W 27 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/LocalizationBundle_fr.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.plot.plot ResourceBundle properties file - French version 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 31-Aug-2003 : Initial version (AL); 6 | # 7 | 8 | Category_Plot=Barres 9 | Combined_Domain_XYPlot=Courbes combin\u00E9es sur l'abcisse 10 | Combined_Range_XYPlot=Courbes combin\u00E9es sur l'ordonn\u00E9e 11 | Compass_Plot=Compas 12 | Contour_Plot=Contours 13 | Fast_Scatter_Plot=Nuage de points 14 | Meter_Plot=Niveaux 15 | Period_Marker_Plot=Period Marker Plot 16 | Pie_Plot=Secteurs 17 | Thermometer_Plot=Thermom\u00E8tre 18 | XY_Plot=Courbes 19 | Pie_3D_Plot=Secteurs 3D 20 | Too_many_elements=Too many elements 21 | 22 | # points of the compass 23 | N=N 24 | E=E 25 | S=S 26 | W=W 27 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/LocalizationBundle_ja.properties: -------------------------------------------------------------------------------- 1 | 2 | Category_Plot=\u30ab\u30c6\u30b4\u30ea\u306e\u30d7\u30ed\u30c3\u30c8 3 | Combined_Domain_XYPlot=\u5206\u985e\u306e\u7d44\u307f\u5408\u308f\u305b XY\u30d7\u30ed\u30c3\u30c8 4 | Combined_Range_XYPlot=\u6570\u5024\u306e\u7d44\u307f\u5408\u308f\u305b XY\u30d7\u30ed\u30c3\u30c8 5 | Compass_Plot=\u30b3\u30f3\u30d1\u30b9\u30d7\u30ed\u30c3\u30c8 6 | Contour_Plot=\u7b49\u9ad8\u7dda\u56f3 7 | Fast_Scatter_Plot=\u9ad8\u901f\u6563\u5e03\u56f3 8 | Meter_Plot=\u30e1\u30fc\u30bf\u30fc\u306e\u30d7\u30ed\u30c3\u30c8 9 | Period_Marker_Plot=\u671f\u9593\u30de\u30fc\u30ab\u30fc\u306e\u30d7\u30ed\u30c3\u30c8 10 | Pie_3D_Plot=3D\u5186\u30b0\u30e9\u30d5\u306e\u30d7\u30ed\u30c3\u30c8 11 | Pie_Plot=\u5186\u30b0\u30e9\u30d5\u306e\u30d7\u30ed\u30c3\u30c8 12 | Polar_Plot=\u6975\u5ea7\u6a19\u306e\u30d7\u30ed\u30c3\u30c8 13 | Thermometer_Plot=\u6e29\u5ea6\u8a08\u306e\u30d7\u30ed\u30c3\u30c8 14 | XY_Plot=XY \u30d7\u30ed\u30c3\u30c8 15 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/LocalizationBundle_nl.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.plot.plot ResourceBundle properties file 2 | # 3 | # Changes (from 31-Aug-2003) 4 | # -------------------------- 5 | # 24-Mar-2003 : Translated into Dutch 6 | # 31-Aug-2003 : Initial version (AL); 7 | # 8 | 9 | Category_Plot=Categorie diagram 10 | Combined_Domain_XYPlot=Diagrammen met gecombineerd domein 11 | Combined_Range_XYPlot=Diagrammen met gecombineerd bereik 12 | Compass_Plot=Kompas diagram 13 | Contour_Plot=Contour diagram 14 | Fast_Scatter_Plot=Spreidingsdiagram 15 | Meter_Plot=Wijzerplaat-diagram 16 | Period_Marker_Plot=Periodemarker-diagram 17 | Pie_Plot=Taartdiagram 18 | Thermometer_Plot=Thermometer-diagram 19 | XY_Plot=XY Diagram 20 | Too_many_elements=Too many elements 21 | 22 | #Secteurs 3D 23 | Pie_3D_Plot=3D Taartdiagram 24 | 25 | # points of the compass 26 | N=N 27 | E=E 28 | S=S 29 | W=W 30 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/LocalizationBundle_pl.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.plot.plot ResourceBundle properties file 2 | # 3 | # Changes (from 15-Mar-2004) 4 | # -------------------------- 5 | # 15-Mar-2004 : Initial version (Kuba Duda); 6 | # 7 | 8 | Category_Plot=Wykres kategorii 9 | Combined_Domain_XYPlot=Wykres kombinowany z dzielon\u0105 osi\u0105 domeny 10 | Combined_Range_XYPlot=Wykres kombinowany z dzielon\u0105 osi\u0105 zasi\u0119gu 11 | Compass_Plot=wykres kompasowy 12 | Contour_Plot=Wykres konturowy 13 | Fast_Scatter_Plot=Szybki wykres rozproszony punktowy 14 | Meter_Plot=Wykres miernikowy 15 | Period_Marker_Plot=Wykres zaznaczaj\u0105cy okresy czasu 16 | Pie_Plot=Wykres ko\u0142owy 17 | Thermometer_Plot=Wykres temperatury 18 | XY_Plot=Wykres XY 19 | Polar_Plot=Wykres dwuwymiarowy o wsp\u00f3\u0142rz\u0119dnych biegunowych 20 | Too_many_elements=Too many elements 21 | 22 | #Secteurs 3D 23 | Pie_3D_Plot=Wykres ko\u0142owy 3D 24 | 25 | # points of the compass 26 | N=N 27 | E=E 28 | S=S 29 | W=W 30 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/LocalizationBundle_pt_PT.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.ChartPanel ResourceBundle properties file - portuguese version 2 | # 3 | # Changes (from 09-Set-2003) 4 | # -------------------------- 5 | # 09-Set-2003 : Initial version (Eduardo Ramalho); 6 | # 7 | 8 | Category_Plot=Barras 9 | Combined_Domain_XYPlot=Curvas combinadas pela abcissa 10 | Combined_Range_XYPlot=Curvas combinadas pela ordenada 11 | Compass_Plot=Compasso 12 | Contour_Plot=Contours 13 | Fast_Scatter_Plot=Dispers\u00E3o 14 | Meter_Plot=N\u00EDvel 15 | Period_Marker_Plot=Period Marker Plot 16 | Pie_Plot=Sectores 17 | Thermometer_Plot=Term\u00a2metro 18 | XY_Plot=Curvas 19 | Pie_3D_Plot=Sectores 3D 20 | Too_many_elements=Too many elements 21 | 22 | # points of the compass 23 | N=N 24 | E=E 25 | S=S 26 | W=W 27 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/LocalizationBundle_ru.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.plot.plot ResourceBundle properties file 2 | # 3 | # Changes (from 10-Nov-2003) 4 | # -------------------------- 5 | # 10-Nov-2003 : Initial version (AL); 6 | # 7 | 8 | Category_Plot=\u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f 9 | Combined_Domain_XYPlot=\u0421\u043e\u0432\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u043f\u043e \u043e\u0441\u0438 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 10 | Combined_Range_XYPlot=\u0421\u043e\u0432\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u043f\u043e \u043e\u0441\u0438 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 11 | Compass_Plot=\u041a\u043e\u043c\u043f\u0430\u0441 12 | Contour_Plot=\u041a\u043e\u043d\u0442\u0443\u0440 13 | Fast_Scatter_Plot=\u0420\u043e\u0441\u0441\u044b\u043f\u044c 14 | Meter_Plot=\u041c\u0435\u0442\u0440\u0438\u043a\u0430 15 | Period_Marker_Plot=\u041f\u0435\u0440\u0438\u043e\u0434 16 | Pie_Plot=\u041a\u0440\u0443\u0433 17 | Thermometer_Plot=\u0422\u0435\u0440\u043c\u043e\u043c\u0435\u0442\u0440 18 | XY_Plot=XY 19 | Too_many_elements=Too many elements 20 | 21 | #Secteurs 3D 22 | Pie_3D_Plot=\u0422\u0440\u0435\u0445\u043c\u0435\u0440\u043d\u044b\u0439 \u043a\u0440\u0443\u0433 23 | 24 | # points of the compass 25 | N=N 26 | E=E 27 | S=S 28 | W=W 29 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/LocalizationBundle_zh_CN.properties: -------------------------------------------------------------------------------- 1 | # org.jfree.chart.plot.plot ResourceBundle properties file 2 | # 3 | # Changes 4 | # ------- 5 | # 29-Jun-2005 : Initial version, see: http://www.jfree.org/phpBB2/viewtopic.php?t=13495; 6 | # 7 | 8 | Category_Plot=\u7c7b\u6bd4\u56fe 9 | Combined_Domain_XYPlot=\u7ec4\u5408\u7684\u9879\u76ee XY \u56fe 10 | Combined_Range_XYPlot=\u7ec4\u5408\u7684\u8303\u56f4 XY \u56fe 11 | Compass_Plot=\u7f57\u76d8\u56fe 12 | Contour_Plot=\u8f6e\u5ed3\u56fe 13 | Fast_Scatter_Plot=\u5feb\u901f\u5206\u6563\u56fe 14 | Meter_Plot=\u4eea\u8868\u56fe 15 | Period_Marker_Plot=\u5468\u671f\u6807\u8bb0\u56fe 16 | Pie_Plot=\u997c\u56fe 17 | Thermometer_Plot=\u6e29\u5ea6\u8ba1\u56fe 18 | XY_Plot=XY \u56fe 19 | Polar_Plot=\u6781\u5750\u6807\u56fe 20 | Too_many_elements=Too many elements 21 | 22 | #Secteurs 3D 23 | Pie_3D_Plot=\u4e09\u7ef4\u997c\u56fe 24 | 25 | # points of the compass 26 | N=N 27 | E=E 28 | S=S 29 | W=W 30 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/PlotState.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * -------------- 28 | * PlotState.java 29 | * -------------- 30 | * (C) Copyright 2003-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 30-Oct-2003 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.plot; 42 | 43 | import java.util.HashMap; 44 | import java.util.Map; 45 | 46 | /** 47 | * Records information about the state of a plot during the drawing process. 48 | */ 49 | public class PlotState { 50 | 51 | /** The shared axis states. */ 52 | private Map sharedAxisStates; 53 | 54 | /** 55 | * Creates a new state object. 56 | */ 57 | public PlotState() { 58 | this.sharedAxisStates = new HashMap(); 59 | } 60 | 61 | /** 62 | * Returns a map containing the shared axis states. 63 | * 64 | * @return A map. 65 | */ 66 | public Map getSharedAxisStates() { 67 | return this.sharedAxisStates; 68 | } 69 | 70 | } 71 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/XYCrosshairState.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * --------------------- 28 | * XYCrosshairState.java 29 | * --------------------- 30 | * (C) Copyright 2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 26-Jun-2008 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.plot; 42 | 43 | import org.jfree.chart.renderer.xy.XYItemRenderer; 44 | 45 | /** 46 | * Crosshair state information for the {@link XYPlot} and {@link XYItemRenderer} 47 | * classes. 48 | */ 49 | public class XYCrosshairState extends CrosshairState { 50 | 51 | /** 52 | * Creates a new instance. 53 | */ 54 | public XYCrosshairState() { 55 | 56 | } 57 | 58 | } 59 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/dial/DialLayerChangeListener.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ---------------------------- 28 | * DialLayerChangeListener.java 29 | * ---------------------------- 30 | * (C) Copyright 2006-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 06-Nov-2006 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.plot.dial; 42 | 43 | import java.util.EventListener; 44 | 45 | /** 46 | * The interface via which an object is notified of changes to a 47 | * {@link DialLayer}. The {@link DialPlot} class listens for changes to its 48 | * layers in this way. 49 | * 50 | * @since 1.0.7 51 | */ 52 | public interface DialLayerChangeListener extends EventListener { 53 | 54 | /** 55 | * A call-back method for receiving notification of a change to a 56 | * {@link DialLayer}. 57 | * 58 | * @param event the event. 59 | */ 60 | public void dialLayerChanged(DialLayerChangeEvent event); 61 | 62 | } 63 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/dial/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Classes for creating dial plots. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/plot/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Plot classes and related interfaces. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/renderer/category/DefaultCategoryItemRenderer.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * -------------------------------- 28 | * DefaultCategoryItemRenderer.java 29 | * -------------------------------- 30 | * (C) Copyright 2003-2008, by Object Refinery Limited and Contributors. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 29-Apr-2003 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.renderer.category; 42 | 43 | import java.io.Serializable; 44 | 45 | import org.jfree.chart.plot.CategoryPlot; 46 | 47 | /** 48 | * A default renderer for the {@link CategoryPlot} class. This is simply an 49 | * alias for the {@link LineAndShapeRenderer} class. 50 | */ 51 | public class DefaultCategoryItemRenderer extends LineAndShapeRenderer 52 | implements Serializable { 53 | 54 | /** For serialization. */ 55 | private static final long serialVersionUID = -7793786349384231896L; 56 | 57 | // no new methods 58 | 59 | } 60 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/renderer/category/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Plug-in renderers for the {@link org.jfree.chart.plot.CategoryPlot} class. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/renderer/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Core support for the plug-in renderers used by the {@link org.jfree.chart.plot.CategoryPlot} and {@link org.jfree.chart.plot.XYPlot} classes. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/renderer/xy/DefaultXYItemRenderer.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * -------------------------- 28 | * DefaultXYItemRenderer.java 29 | * -------------------------- 30 | * (C) Copyright 2003-2008, by Object Refinery Limited and Contributors. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 23-Jul-2003 : Version 1 (DG); 38 | * 22-Feb-2005 : Now extends XYLineAndShapeRenderer (DG); 39 | * 40 | */ 41 | 42 | package org.jfree.chart.renderer.xy; 43 | 44 | import java.io.Serializable; 45 | 46 | /** 47 | * A default renderer for the {@link org.jfree.chart.plot.XYPlot} class. This 48 | * is an alias for the {@link XYLineAndShapeRenderer} class. 49 | */ 50 | public class DefaultXYItemRenderer extends XYLineAndShapeRenderer 51 | implements Serializable { 52 | 53 | /** For serialization. */ 54 | static final long serialVersionUID = 3450423530996888074L; 55 | 56 | // no new methods 57 | 58 | } 59 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/renderer/xy/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Plug-in renderers for the {@link org.jfree.chart.plot.XYPlot} class. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/resources/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Localised resources for the JFreeChart class library. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/servlet/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Classes for providing useful servlet and JSP functionality. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/title/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Classes used to display chart titles and subtitles. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/urls/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Classes for adding URLS to charts for HTML image map generation. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/chart/util/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Utility classes used by JFreeChart. Some of these will be candidates for addition to JCommon, but we keep them here so that our dependency is only JCommon 1.0.0 or later. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/KeyedValue.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * --------------- 28 | * KeyedValue.java 29 | * --------------- 30 | * (C) Copyright 2002-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes: 36 | * -------- 37 | * 31-Oct-2002 : Version 1 (DG); 38 | * 18-Aug-2004 : Moved from org.jfree.data --> org.jfree.data.base (DG); 39 | * 40 | */ 41 | 42 | package org.jfree.data; 43 | 44 | /** 45 | * A (key, value) pair. 46 | * 47 | * @see DefaultKeyedValue 48 | */ 49 | public interface KeyedValue extends Value { 50 | 51 | /** 52 | * Returns the key associated with the value. The key returned by this 53 | * method should be immutable. 54 | * 55 | * @return The key (never null). 56 | */ 57 | public Comparable getKey(); 58 | 59 | } 60 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/UnknownKeyException.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ------------------------ 28 | * UnknownKeyException.java 29 | * ------------------------ 30 | * (C) Copyright 2005-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 12-Jan-2005 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.data; 42 | 43 | /** 44 | * An exception that indicates an unknown key value. 45 | */ 46 | public class UnknownKeyException extends IllegalArgumentException { 47 | 48 | /** 49 | * Creates a new exception. 50 | * 51 | * @param message a message describing the exception. 52 | */ 53 | public UnknownKeyException(String message) { 54 | super(message); 55 | } 56 | 57 | } 58 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/Value.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ---------- 28 | * Value.java 29 | * ---------- 30 | * (C) Copyright 2002-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes: 36 | * -------- 37 | * 28-Oct-2002 : Version 1 (DG); 38 | * 18-Aug-2004 : Moved from org.jfree.data --> org.jfree.data.base (DG); 39 | * 40 | */ 41 | 42 | package org.jfree.data; 43 | 44 | /** 45 | * A general purpose interface for accessing a value. 46 | */ 47 | public interface Value { 48 | 49 | /** 50 | * Returns the value. 51 | * 52 | * @return The value (possibly null). 53 | */ 54 | public Number getValue(); 55 | 56 | } 57 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/category/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | A package containing the {@link org.jfree.data.category.CategoryDataset} interface and related classes. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/contour/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Datasets used by the {@link org.jfree.chart.plot.ContourPlot} class. All 5 | classes/interfaces in this package are now deprecated. 6 | 7 | 8 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/function/Function2D.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * --------------- 28 | * Function2D.java 29 | * --------------- 30 | * (C) Copyright 2002-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes: 36 | * -------- 37 | * 01-Oct-2002 : Version 1 (DG); 38 | * 20-Jan-2005 : Minor Javadoc update (DG); 39 | * 40 | */ 41 | 42 | package org.jfree.data.function; 43 | 44 | /** 45 | * A function of the form y = f(x). 46 | */ 47 | public interface Function2D { 48 | 49 | /** 50 | * Returns the value of the function ('y') for a given input ('x'). 51 | * 52 | * @param x the x-value. 53 | * 54 | * @return The function value. 55 | */ 56 | public double getValue(double x); 57 | 58 | } 59 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/function/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Representation for simple functions. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/gantt/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Data interfaces and classes for Gantt charts. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/general/DefaultKeyedValuesDataset.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ------------------------------ 28 | * DefaultKeyedValuesDataset.java 29 | * ------------------------------ 30 | * (C) Copyright 2003-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 04-Mar-2003 : Version 1 (DG); 38 | * 13-Mar-2003 : Implemented Serializable (DG); 39 | * 40 | */ 41 | 42 | package org.jfree.data.general; 43 | 44 | /** 45 | * A default implementation of the {@link KeyedValuesDataset} interface. 46 | * This is an alias for {@link DefaultPieDataset}. 47 | */ 48 | public class DefaultKeyedValuesDataset extends DefaultPieDataset 49 | implements KeyedValuesDataset { 50 | 51 | /** For serialization. */ 52 | private static final long serialVersionUID = 306264413152815781L; 53 | 54 | // no new methods 55 | 56 | } 57 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/general/KeyedValueDataset.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ---------------------- 28 | * KeyedValueDataset.java 29 | * ---------------------- 30 | * (C) Copyright 2003-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes: 36 | * -------- 37 | * 13-Mar-2003 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.data.general; 42 | 43 | import org.jfree.data.KeyedValue; 44 | 45 | /** 46 | * A dataset containing a single value. 47 | */ 48 | public interface KeyedValueDataset extends KeyedValue, Dataset { 49 | 50 | // no new methods required 51 | 52 | } 53 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/general/KeyedValues2DDataset.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ----------------------- 28 | * KeyedValues2DDataset.java 29 | * ----------------------- 30 | * (C) Copyright 2003-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes: 36 | * -------- 37 | * 13-Mar-2003 : Version 1 (DG); 38 | * 23-Apr-2003 : Switched CategoryDataset and KeyedValues2DDataset so that 39 | * CategoryDataset is the super interface (DG); 40 | * 41 | */ 42 | 43 | package org.jfree.data.general; 44 | 45 | import org.jfree.data.category.CategoryDataset; 46 | 47 | /** 48 | * A dataset containing (key, value) data items. This dataset is equivalent 49 | * to a {@link CategoryDataset} and is included for completeness only. 50 | */ 51 | public interface KeyedValues2DDataset extends CategoryDataset { 52 | 53 | // no new methods required 54 | 55 | } 56 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/general/KeyedValuesDataset.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ----------------------- 28 | * KeyedValuesDataset.java 29 | * ----------------------- 30 | * (C) Copyright 2003-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes: 36 | * -------- 37 | * 05-Mar-2003 : Version 1 (DG); 38 | * 24-Apr-2003 : Switched places with PieDataset (DG); 39 | * 40 | */ 41 | 42 | package org.jfree.data.general; 43 | 44 | /** 45 | * A dataset containing (key, value) data items. 46 | */ 47 | public interface KeyedValuesDataset extends PieDataset { 48 | 49 | // no new methods required 50 | 51 | } 52 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/general/SeriesChangeEvent.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ---------------------- 28 | * SeriesChangeEvent.java 29 | * ---------------------- 30 | * (C) Copyright 2001-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 15-Nov-2001 : Version 1 (DG); 38 | * 18-Aug-2003 : Implemented Serializable (DG); 39 | * 40 | */ 41 | 42 | package org.jfree.data.general; 43 | 44 | import java.io.Serializable; 45 | import java.util.EventObject; 46 | 47 | /** 48 | * An event with details of a change to a series. 49 | */ 50 | public class SeriesChangeEvent extends EventObject implements Serializable { 51 | 52 | /** For serialization. */ 53 | private static final long serialVersionUID = 1593866085210089052L; 54 | 55 | /** 56 | * Constructs a new event. 57 | * 58 | * @param source the source of the change event. 59 | */ 60 | public SeriesChangeEvent(Object source) { 61 | super(source); 62 | } 63 | 64 | } 65 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/general/SeriesChangeListener.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ------------------------- 28 | * SeriesChangeListener.java 29 | * ------------------------- 30 | * (C) Copyright 2001-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 15-Nov-2001 : Version 1 (DG); 38 | * 26-Jun-2003 : Now extends EventListener so we can use the EventListenerList 39 | * mechanism (DG); 40 | * 41 | */ 42 | 43 | package org.jfree.data.general; 44 | 45 | import java.util.EventListener; 46 | 47 | /** 48 | * Methods for receiving notification of changes to a data series. 49 | */ 50 | public interface SeriesChangeListener extends EventListener { 51 | 52 | /** 53 | * Called when an observed series changes in some way. 54 | * 55 | * @param event information about the change. 56 | */ 57 | public void seriesChanged(SeriesChangeEvent event); 58 | 59 | } 60 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/general/ValueDataset.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ----------------- 28 | * ValueDataset.java 29 | * ----------------- 30 | * (C) Copyright 2003-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes: 36 | * -------- 37 | * 27-Mar-2003 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.data.general; 42 | 43 | import org.jfree.data.Value; 44 | 45 | /** 46 | * An interface for a dataset that returns a single value. 47 | */ 48 | public interface ValueDataset extends Value, Dataset { 49 | 50 | // no additional methods required 51 | 52 | } 53 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/general/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Data interfaces and classes. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/io/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Miscellaneous support for input/output of data. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/jdbc/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Dataset classes that fetch data from a database via JDBC. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | The base package for classes that represent various types of data. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/resources/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Resource bundles for items that require localisation. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/statistics/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Classes for representing statistical data. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/time/TimePeriodFormatException.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ------------------------------ 28 | * TimePeriodFormatException.java 29 | * ------------------------------ 30 | * (C) Copyright 2001-2008, by Object Refinery Limited. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 07-Dec-2001 : Version 1 (DG); 38 | * 13-Mar-2003 : Moved to com.jrefinery.data.time package (DG); 39 | */ 40 | 41 | package org.jfree.data.time; 42 | 43 | /** 44 | * An exception that indicates an invalid format in a string representing a 45 | * time period. 46 | */ 47 | public class TimePeriodFormatException extends IllegalArgumentException { 48 | 49 | /** 50 | * Creates a new exception. 51 | * 52 | * @param message a message describing the exception. 53 | */ 54 | public TimePeriodFormatException(String message) { 55 | super(message); 56 | } 57 | 58 | } 59 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/time/ohlc/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Classes for representing financial data in open-high-low-close form. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/time/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Interfaces and classes for time-related data. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/xml/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Support for reading datasets from XML files. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/org/jfree/data/xy/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | A package containing the {@link org.jfree.data.xy.XYDataset} interface and related classes. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/source/overview.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | JFreeChart is a free chart library for Java that can generate a 5 | wide variety of charts for use in both client (Swing and JavaFX) and server 6 | (web) applications. 7 |

8 | Please visit 9 | http://www.jfree.org/jfreechart/index.html 10 | 11 | for the latest information about JFreeChart. 12 | 13 | 14 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/swt/README: -------------------------------------------------------------------------------- 1 | EXPERIMENTAL SWT CODE FOR JFREECHART 2 | ------------------------------------ 3 | 4 | 07 November 2006 5 | 6 | SWT is the Java Standard Widget Toolkit [1], an open source (released under the 7 | Eclipse Public License) and portable library to create user interfaces. The 8 | SWT interfaces will use native widget on any operating system it supports. 9 | 10 | This code provide support for using the JFreeChart library directly into 11 | SWT Composites. Note that there is the alternative to use the SWT_AWT class 12 | but it will run only with SUN JRE and Java 1.5 (and it is not native, so 13 | potentially much slower). 14 | 15 | To compile this code, you will need to link it against the swt.jar of the 16 | target os. Indeed while the API is totally cross platform, the implementation 17 | is platform dependent since it calls on native widget if available (much 18 | faster) and only rely on a Java implementation if it is not. An ant script: 19 | build-swt.xml is provided to help you build the code. This file contains two 20 | compile targets to build the following jar: 21 | 22 | * swtgraphics2d.jar - The generic classes not JFreeChart specific. 23 | * jfreechart-1.0.x-swt.jar - The specific JFreeChart SWT classes. 24 | 25 | To get a successful build id pretty straightforward, download the SWT library 26 | from eclipse.org [1]. Unpack the archive in the JFreeChart tree as libswt. 27 | If you need to build for multiple OS, put all the SWT in there. For instance 28 | (with SWT version 3.2): 29 | 30 | libswt 31 | | 32 | `--swt-linux-gtk-x86 33 | | | 34 | | `--swt.jar 35 | | `--libswt-gtk-3232.so 36 | | `-- etc... 37 | `--swt-win32-win32-x86 38 | | 39 | `--swt.jar 40 | `--swt-win32-3232.dll 41 | 42 | Then you need to edit the build-swt.xml script and change line 14 to what is 43 | needed. Of course all of the paths are relative. You can change it to whatever 44 | you like provided the path in the xml file is correct. Then just run: 45 | 46 | ant -buildfile build-swt.xml 47 | 48 | [1] http://www.eclipse.org/swt/ 49 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/chart/annotations/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tests for the classes in the org.jfree.chart.annotations package. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/chart/axis/NumberAxis3DTest.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * --------------------- 28 | * NumberAxis3DTest.java 29 | * --------------------- 30 | * (C) Copyright 2003-2013, by Object Refinery Limited and Contributors. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 26-Mar-2003 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.axis; 42 | 43 | import static org.junit.Assert.assertEquals; 44 | 45 | import org.jfree.chart.TestUtilities; 46 | import org.junit.Test; 47 | 48 | /** 49 | * Tests for the {@link NumberAxis3D} class. 50 | */ 51 | public class NumberAxis3DTest { 52 | 53 | /** 54 | * Serialize an instance, restore it, and check for equality. 55 | */ 56 | @Test 57 | public void testSerialization() { 58 | NumberAxis3D a1 = new NumberAxis3D("Test Axis"); 59 | NumberAxis3D a2 = (NumberAxis3D) TestUtilities.serialised(a1); 60 | assertEquals(a1, a2); 61 | } 62 | 63 | } 64 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/chart/axis/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tests for the axis classes and interfaces. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/chart/labels/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | JUnit tests. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/chart/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Test cases for the JFreeChart class library, based on the JUnit framework. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/chart/plot/ContourPlotTest.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * -------------------- 28 | * ContourPlotTest.java 29 | * -------------------- 30 | * (C) Copyright 2003-2013, by Object Refinery Limited and Contributors. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 27-Mar-2003 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.plot; 42 | 43 | import static org.junit.Assert.assertEquals; 44 | 45 | import org.jfree.chart.TestUtilities; 46 | import org.junit.Test; 47 | 48 | /** 49 | * Tests for the ContourPlot class. 50 | */ 51 | public class ContourPlotTest { 52 | 53 | /** 54 | * Serialize an instance, restore it, and check for equality. 55 | */ 56 | @Test 57 | public void testSerialization() { 58 | ContourPlot p1 = new ContourPlot(null, null, null, null); 59 | ContourPlot p2 = (ContourPlot) TestUtilities.serialised(p1); 60 | assertEquals(p1, p2); 61 | } 62 | 63 | } 64 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/chart/plot/dial/MyDialLayerChangeListener.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * ------------------------------ 28 | * MyDialLayerChangeListener.java 29 | * ------------------------------ 30 | * (C) Copyright 2007-2013, by Object Refinery Limited and Contributors. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 16-Oct-2007 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.chart.plot.dial; 42 | 43 | /** 44 | * A dial layer change listener. 45 | */ 46 | public class MyDialLayerChangeListener implements DialLayerChangeListener { 47 | 48 | /** 49 | * Creates a new instance. 50 | */ 51 | public MyDialLayerChangeListener() { 52 | } 53 | 54 | /** 55 | * Receives a change event. 56 | * 57 | * @param event the event. 58 | */ 59 | @Override 60 | public void dialLayerChanged(DialLayerChangeEvent event) { 61 | } 62 | 63 | } 64 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/chart/plot/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | JUnit tests for the plot classes. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/chart/renderer/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | JUnit tests. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/chart/urls/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | JUnit tests. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/data/general/DatasetGroupTest.java: -------------------------------------------------------------------------------- 1 | /* =========================================================== 2 | * JFreeChart : a free chart library for the Java(tm) platform 3 | * =========================================================== 4 | * 5 | * (C) Copyright 2000-2013, by Object Refinery Limited and Contributors. 6 | * 7 | * Project Info: http://www.jfree.org/jfreechart/index.html 8 | * 9 | * This library is free software; you can redistribute it and/or modify it 10 | * under the terms of the GNU Lesser General Public License as published by 11 | * the Free Software Foundation; either version 2.1 of the License, or 12 | * (at your option) any later version. 13 | * 14 | * This library is distributed in the hope that it will be useful, but 15 | * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 16 | * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 17 | * License for more details. 18 | * 19 | * You should have received a copy of the GNU Lesser General Public 20 | * License along with this library; if not, write to the Free Software 21 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, 22 | * USA. 23 | * 24 | * [Oracle and Java are registered trademarks of Oracle and/or its affiliates. 25 | * Other names may be trademarks of their respective owners.] 26 | * 27 | * --------------------- 28 | * DatasetGroupTest.java 29 | * --------------------- 30 | * (C) Copyright 2005-2013, by Object Refinery Limited and Contributors. 31 | * 32 | * Original Author: David Gilbert (for Object Refinery Limited); 33 | * Contributor(s): -; 34 | * 35 | * Changes 36 | * ------- 37 | * 14-Jan-2005 : Version 1 (DG); 38 | * 39 | */ 40 | 41 | package org.jfree.data.general; 42 | 43 | import org.jfree.chart.TestUtilities; 44 | import org.junit.Test; 45 | import static org.junit.Assert.assertEquals; 46 | 47 | /** 48 | * Tests for the {@link DatasetGroup} class. 49 | */ 50 | public class DatasetGroupTest { 51 | 52 | /** 53 | * Serialize an instance, restore it, and check for equality. 54 | */ 55 | @Test 56 | public void testSerialization() { 57 | DatasetGroup g1 = new DatasetGroup(); 58 | DatasetGroup g2 = (DatasetGroup) TestUtilities.serialised(g1); 59 | assertEquals(g1, g2); 60 | } 61 | 62 | } 63 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/data/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Test cases for the classes in com.jrefinery.data.*. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/data/statistics/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Tests for the classes in the org.jfree.data.statistics package. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/lib/jfreechart-1.0.19/jfreechart-1.0.19/tests/org/jfree/data/time/package.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | JUnit tests. 5 | 6 | 7 | -------------------------------------------------------------------------------- /AlgorithmsProject_CVRP_PSO/src/GraphVisualization/GraphUI.java: -------------------------------------------------------------------------------- 1 | package GraphVisualization; 2 | 3 | import java.util.List; 4 | 5 | import org.graphstream.graph.*; 6 | import org.graphstream.graph.implementations.*; 7 | 8 | 9 | public class GraphUI { 10 | 11 | private String styleSheet = 12 | "node { fill-color: blue; text-color: white; size: 40px; text-size: 20px;} "+ 13 | "node#0 { shape: box; fill-color: orange; } "+ 14 | "edge.marked {fill-color: red;}"+ 15 | "edge {text-size: 20px; text-alignment: above; size: 3px; fill-color: black; arrow-shape: arrow; arrow-size: 8px;}"; 16 | 17 | public void displayGraph(String gName, List edges){ 18 | System.setProperty("org.graphstream.ui.renderer", "org.graphstream.ui.j2dviewer.J2DGraphRenderer"); 19 | 20 | Graph graph = new MultiGraph(gName); 21 | graph.addAttribute("ui.stylesheet", styleSheet); 22 | //graph.addAttribute("ui.label", gName); 23 | graph.setAutoCreate(true); 24 | graph.setStrict(false); 25 | graph.display(); 26 | 27 | 28 | for(int e=0; e