diff --git a/.gitignore b/.gitignore index a5f7321..a312d8c 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,6 @@ bin-debug bin .sourceMate .FlexUnitSettings -src/FlexUnitApplication.mxml \ No newline at end of file +src/FlexUnitApplication.mxml +*.iml +*.ipr \ No newline at end of file diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..548a105 --- /dev/null +++ b/pom.xml @@ -0,0 +1,124 @@ + + + 4.0.0 + + watercolor + watercolor + 1.0-SNAPSHOT + swc + + watercolor Flex + + + 4.1.0.16076 + 4.1-RC2 + + + + src/main/flex + src/test/flex + + + org.sonatype.flexmojos + flexmojos-maven-plugin + 3.9 + true + + + com.adobe.flex + compiler + ${flex.version} + pom + + + + + + + + + com.adobe.flex.framework + flex-framework + ${flex.version} + pom + + + + com.adobe.flexunit + flexunit + ${flexunit.version} + swc + test + + + + + + flex-mojos-repository + http://repository.sonatype.org/content/groups/flexgroup + + true + + + true + + + + cairngorm3-repository + http://opensource.adobe.com/svn/opensource/cairngorm3/maven-repository + + + + + + + flex-mojos-repository + http://repository.sonatype.org/content/groups/flexgroup + + true + + + true + + + + + + + m2e + + + m2e.version + + + + + + org.maven.ide.eclipse + lifecycle-mapping + 0.9.9-SNAPSHOT + + customizable + + + + + org.apache.maven.plugins:maven-resources-plugin:: + + + + + + + + org.apache.maven.plugins + maven-resources-plugin + 2.4 + + + + + + + + diff --git a/src/flexUnitTests/WatercolorTestSuite.as b/src/flexUnitTests/WatercolorTestSuite.as deleted file mode 100644 index f36f9fc..0000000 --- a/src/flexUnitTests/WatercolorTestSuite.as +++ /dev/null @@ -1,34 +0,0 @@ -package flexUnitTests -{ - import flexUnitTests.commands.execUtils.*; - import flexUnitTests.factories.fxg.FXGToSparkFactoryTests; - import flexUnitTests.factories.svg.SVGToSparkFactoryTests; - import flexUnitTests.managers.HistoryManagerTests; - import flexUnitTests.utils.TransformUtilTests; - - [Suite] - [RunWith("org.flexunit.runners.Suite")] - public class WatercolorTestSuite - { - - public var arrangeExecuteTests:ArrangeExecuteTests; - - public var createExecuteTests:CreateExecuteTests; - - public var deleteExecuteTests:DeleteExecuteTests; - - public var historyManagerTests:flexUnitTests.managers.HistoryManagerTests; - - public var propertyExecuteTests:PropertyExecuteTests; - - public var transformExecuteTests:TransformExecuteTests; - - public var groupExecuteTests:GroupExecuteTests; - - public var svgToSparkFactoryTests:SVGToSparkFactoryTests; - - public var fxgToSparkFactoryTests:FXGToSparkFactoryTests; - - public var transformUtilTests:TransformUtilTests; - } -} \ No newline at end of file diff --git a/src/defaults.css b/src/main/flex/defaults.css similarity index 100% rename from src/defaults.css rename to src/main/flex/defaults.css diff --git a/src/fl/motion/MatrixTransformer.as b/src/main/flex/fl/motion/MatrixTransformer.as similarity index 100% rename from src/fl/motion/MatrixTransformer.as rename to src/main/flex/fl/motion/MatrixTransformer.as diff --git a/src/watercolor/assets/bottomLeft.fxg b/src/main/flex/watercolor/assets/bottomLeft.fxg similarity index 100% rename from src/watercolor/assets/bottomLeft.fxg rename to src/main/flex/watercolor/assets/bottomLeft.fxg diff --git a/src/watercolor/assets/bottomMiddle.fxg b/src/main/flex/watercolor/assets/bottomMiddle.fxg similarity index 100% rename from src/watercolor/assets/bottomMiddle.fxg rename to src/main/flex/watercolor/assets/bottomMiddle.fxg diff --git a/src/watercolor/assets/bottomRight.fxg b/src/main/flex/watercolor/assets/bottomRight.fxg similarity index 100% rename from src/watercolor/assets/bottomRight.fxg rename to src/main/flex/watercolor/assets/bottomRight.fxg diff --git a/src/watercolor/assets/cursors/HandClosed_cursor.fxg b/src/main/flex/watercolor/assets/cursors/HandClosed_cursor.fxg similarity index 100% rename from src/watercolor/assets/cursors/HandClosed_cursor.fxg rename to src/main/flex/watercolor/assets/cursors/HandClosed_cursor.fxg diff --git a/src/watercolor/assets/cursors/HandOpen_cursor.fxg b/src/main/flex/watercolor/assets/cursors/HandOpen_cursor.fxg similarity index 100% rename from src/watercolor/assets/cursors/HandOpen_cursor.fxg rename to src/main/flex/watercolor/assets/cursors/HandOpen_cursor.fxg diff --git a/src/watercolor/assets/cursors/ZoomIn_cursor.fxg b/src/main/flex/watercolor/assets/cursors/ZoomIn_cursor.fxg similarity index 100% rename from src/watercolor/assets/cursors/ZoomIn_cursor.fxg rename to src/main/flex/watercolor/assets/cursors/ZoomIn_cursor.fxg diff --git a/src/watercolor/assets/cursors/ZoomOut_cursor.fxg b/src/main/flex/watercolor/assets/cursors/ZoomOut_cursor.fxg similarity index 100% rename from src/watercolor/assets/cursors/ZoomOut_cursor.fxg rename to src/main/flex/watercolor/assets/cursors/ZoomOut_cursor.fxg diff --git a/src/watercolor/assets/leftMiddle.fxg b/src/main/flex/watercolor/assets/leftMiddle.fxg similarity index 100% rename from src/watercolor/assets/leftMiddle.fxg rename to src/main/flex/watercolor/assets/leftMiddle.fxg diff --git a/src/watercolor/assets/rightMiddle.fxg b/src/main/flex/watercolor/assets/rightMiddle.fxg similarity index 100% rename from src/watercolor/assets/rightMiddle.fxg rename to src/main/flex/watercolor/assets/rightMiddle.fxg diff --git a/src/watercolor/assets/topLeft.fxg b/src/main/flex/watercolor/assets/topLeft.fxg similarity index 100% rename from src/watercolor/assets/topLeft.fxg rename to src/main/flex/watercolor/assets/topLeft.fxg diff --git a/src/watercolor/assets/topMiddle.fxg b/src/main/flex/watercolor/assets/topMiddle.fxg similarity index 100% rename from src/watercolor/assets/topMiddle.fxg rename to src/main/flex/watercolor/assets/topMiddle.fxg diff --git a/src/watercolor/assets/topRight.fxg b/src/main/flex/watercolor/assets/topRight.fxg similarity index 100% rename from src/watercolor/assets/topRight.fxg rename to src/main/flex/watercolor/assets/topRight.fxg diff --git a/src/watercolor/commands/vo/ArrangeVO.as b/src/main/flex/watercolor/commands/vo/ArrangeVO.as similarity index 100% rename from src/watercolor/commands/vo/ArrangeVO.as rename to src/main/flex/watercolor/commands/vo/ArrangeVO.as diff --git a/src/watercolor/commands/vo/CommandVO.as b/src/main/flex/watercolor/commands/vo/CommandVO.as similarity index 100% rename from src/watercolor/commands/vo/CommandVO.as rename to src/main/flex/watercolor/commands/vo/CommandVO.as diff --git a/src/watercolor/commands/vo/CreateVO.as b/src/main/flex/watercolor/commands/vo/CreateVO.as similarity index 100% rename from src/watercolor/commands/vo/CreateVO.as rename to src/main/flex/watercolor/commands/vo/CreateVO.as diff --git a/src/watercolor/commands/vo/DeleteVO.as b/src/main/flex/watercolor/commands/vo/DeleteVO.as similarity index 100% rename from src/watercolor/commands/vo/DeleteVO.as rename to src/main/flex/watercolor/commands/vo/DeleteVO.as diff --git a/src/watercolor/commands/vo/GroupCommandVO.as b/src/main/flex/watercolor/commands/vo/GroupCommandVO.as similarity index 100% rename from src/watercolor/commands/vo/GroupCommandVO.as rename to src/main/flex/watercolor/commands/vo/GroupCommandVO.as diff --git a/src/watercolor/commands/vo/Position.as b/src/main/flex/watercolor/commands/vo/Position.as similarity index 100% rename from src/watercolor/commands/vo/Position.as rename to src/main/flex/watercolor/commands/vo/Position.as diff --git a/src/watercolor/commands/vo/PropertyVO.as b/src/main/flex/watercolor/commands/vo/PropertyVO.as similarity index 100% rename from src/watercolor/commands/vo/PropertyVO.as rename to src/main/flex/watercolor/commands/vo/PropertyVO.as diff --git a/src/watercolor/commands/vo/TransformVO.as b/src/main/flex/watercolor/commands/vo/TransformVO.as similarity index 100% rename from src/watercolor/commands/vo/TransformVO.as rename to src/main/flex/watercolor/commands/vo/TransformVO.as diff --git a/src/watercolor/components/HSBColorPicker.as b/src/main/flex/watercolor/components/HSBColorPicker.as similarity index 100% rename from src/watercolor/components/HSBColorPicker.as rename to src/main/flex/watercolor/components/HSBColorPicker.as diff --git a/src/watercolor/components/HSBColorWheel.as b/src/main/flex/watercolor/components/HSBColorWheel.as similarity index 100% rename from src/watercolor/components/HSBColorWheel.as rename to src/main/flex/watercolor/components/HSBColorWheel.as diff --git a/src/watercolor/components/IHSBColorWheel.as b/src/main/flex/watercolor/components/IHSBColorWheel.as similarity index 100% rename from src/watercolor/components/IHSBColorWheel.as rename to src/main/flex/watercolor/components/IHSBColorWheel.as diff --git a/src/watercolor/components/supportClasses/ColorWheelBitmap.as b/src/main/flex/watercolor/components/supportClasses/ColorWheelBitmap.as similarity index 100% rename from src/watercolor/components/supportClasses/ColorWheelBitmap.as rename to src/main/flex/watercolor/components/supportClasses/ColorWheelBitmap.as diff --git a/src/watercolor/elements/BitmapImage.as b/src/main/flex/watercolor/elements/BitmapImage.as similarity index 100% rename from src/watercolor/elements/BitmapImage.as rename to src/main/flex/watercolor/elements/BitmapImage.as diff --git a/src/watercolor/elements/Element.as b/src/main/flex/watercolor/elements/Element.as similarity index 100% rename from src/watercolor/elements/Element.as rename to src/main/flex/watercolor/elements/Element.as diff --git a/src/watercolor/elements/Ellipse.as b/src/main/flex/watercolor/elements/Ellipse.as similarity index 100% rename from src/watercolor/elements/Ellipse.as rename to src/main/flex/watercolor/elements/Ellipse.as diff --git a/src/watercolor/elements/Group.as b/src/main/flex/watercolor/elements/Group.as similarity index 100% rename from src/watercolor/elements/Group.as rename to src/main/flex/watercolor/elements/Group.as diff --git a/src/watercolor/elements/Layer.as b/src/main/flex/watercolor/elements/Layer.as similarity index 100% rename from src/watercolor/elements/Layer.as rename to src/main/flex/watercolor/elements/Layer.as diff --git a/src/watercolor/elements/Line.as b/src/main/flex/watercolor/elements/Line.as similarity index 100% rename from src/watercolor/elements/Line.as rename to src/main/flex/watercolor/elements/Line.as diff --git a/src/watercolor/elements/Path.as b/src/main/flex/watercolor/elements/Path.as similarity index 100% rename from src/watercolor/elements/Path.as rename to src/main/flex/watercolor/elements/Path.as diff --git a/src/watercolor/elements/Rect.as b/src/main/flex/watercolor/elements/Rect.as similarity index 100% rename from src/watercolor/elements/Rect.as rename to src/main/flex/watercolor/elements/Rect.as diff --git a/src/watercolor/elements/TextGroup.as b/src/main/flex/watercolor/elements/TextGroup.as similarity index 100% rename from src/watercolor/elements/TextGroup.as rename to src/main/flex/watercolor/elements/TextGroup.as diff --git a/src/watercolor/elements/components/Grid.as b/src/main/flex/watercolor/elements/components/Grid.as similarity index 100% rename from src/watercolor/elements/components/Grid.as rename to src/main/flex/watercolor/elements/components/Grid.as diff --git a/src/watercolor/elements/components/IsolationLayer.as b/src/main/flex/watercolor/elements/components/IsolationLayer.as similarity index 100% rename from src/watercolor/elements/components/IsolationLayer.as rename to src/main/flex/watercolor/elements/components/IsolationLayer.as diff --git a/src/watercolor/elements/components/SelectionLayer.as b/src/main/flex/watercolor/elements/components/SelectionLayer.as similarity index 100% rename from src/watercolor/elements/components/SelectionLayer.as rename to src/main/flex/watercolor/elements/components/SelectionLayer.as diff --git a/src/watercolor/elements/components/Workarea.as b/src/main/flex/watercolor/elements/components/Workarea.as similarity index 100% rename from src/watercolor/elements/components/Workarea.as rename to src/main/flex/watercolor/elements/components/Workarea.as diff --git a/src/watercolor/elements/interfaces/IElementContainer.as b/src/main/flex/watercolor/elements/interfaces/IElementContainer.as similarity index 100% rename from src/watercolor/elements/interfaces/IElementContainer.as rename to src/main/flex/watercolor/elements/interfaces/IElementContainer.as diff --git a/src/watercolor/elements/interfaces/IElementGraphic.as b/src/main/flex/watercolor/elements/interfaces/IElementGraphic.as similarity index 100% rename from src/watercolor/elements/interfaces/IElementGraphic.as rename to src/main/flex/watercolor/elements/interfaces/IElementGraphic.as diff --git a/src/watercolor/elements/interfaces/ITextGroup.as b/src/main/flex/watercolor/elements/interfaces/ITextGroup.as similarity index 100% rename from src/watercolor/elements/interfaces/ITextGroup.as rename to src/main/flex/watercolor/elements/interfaces/ITextGroup.as diff --git a/src/watercolor/events/EditContourLayerEvent.as b/src/main/flex/watercolor/events/EditContourLayerEvent.as similarity index 100% rename from src/watercolor/events/EditContourLayerEvent.as rename to src/main/flex/watercolor/events/EditContourLayerEvent.as diff --git a/src/watercolor/events/ElementSelectionEvent.as b/src/main/flex/watercolor/events/ElementSelectionEvent.as similarity index 100% rename from src/watercolor/events/ElementSelectionEvent.as rename to src/main/flex/watercolor/events/ElementSelectionEvent.as diff --git a/src/watercolor/events/HistoryManagerEvent.as b/src/main/flex/watercolor/events/HistoryManagerEvent.as similarity index 100% rename from src/watercolor/events/HistoryManagerEvent.as rename to src/main/flex/watercolor/events/HistoryManagerEvent.as diff --git a/src/watercolor/events/IsolationLayerEvent.as b/src/main/flex/watercolor/events/IsolationLayerEvent.as similarity index 100% rename from src/watercolor/events/IsolationLayerEvent.as rename to src/main/flex/watercolor/events/IsolationLayerEvent.as diff --git a/src/watercolor/events/LayerElementEvent.as b/src/main/flex/watercolor/events/LayerElementEvent.as similarity index 100% rename from src/watercolor/events/LayerElementEvent.as rename to src/main/flex/watercolor/events/LayerElementEvent.as diff --git a/src/watercolor/events/LayerTransformEvent.as b/src/main/flex/watercolor/events/LayerTransformEvent.as similarity index 100% rename from src/watercolor/events/LayerTransformEvent.as rename to src/main/flex/watercolor/events/LayerTransformEvent.as diff --git a/src/watercolor/events/SelectionManagerEvent.as b/src/main/flex/watercolor/events/SelectionManagerEvent.as similarity index 100% rename from src/watercolor/events/SelectionManagerEvent.as rename to src/main/flex/watercolor/events/SelectionManagerEvent.as diff --git a/src/watercolor/events/TextGroupEvent.as b/src/main/flex/watercolor/events/TextGroupEvent.as similarity index 100% rename from src/watercolor/events/TextGroupEvent.as rename to src/main/flex/watercolor/events/TextGroupEvent.as diff --git a/src/watercolor/events/TransformEvent.as b/src/main/flex/watercolor/events/TransformEvent.as similarity index 100% rename from src/watercolor/events/TransformEvent.as rename to src/main/flex/watercolor/events/TransformEvent.as diff --git a/src/watercolor/events/TransformLayerEvent.as b/src/main/flex/watercolor/events/TransformLayerEvent.as similarity index 100% rename from src/watercolor/events/TransformLayerEvent.as rename to src/main/flex/watercolor/events/TransformLayerEvent.as diff --git a/src/watercolor/events/WorkareaEvent.as b/src/main/flex/watercolor/events/WorkareaEvent.as similarity index 100% rename from src/watercolor/events/WorkareaEvent.as rename to src/main/flex/watercolor/events/WorkareaEvent.as diff --git a/src/watercolor/execute/ArrangeExecute.as b/src/main/flex/watercolor/execute/ArrangeExecute.as similarity index 100% rename from src/watercolor/execute/ArrangeExecute.as rename to src/main/flex/watercolor/execute/ArrangeExecute.as diff --git a/src/watercolor/execute/CreateExecute.as b/src/main/flex/watercolor/execute/CreateExecute.as similarity index 100% rename from src/watercolor/execute/CreateExecute.as rename to src/main/flex/watercolor/execute/CreateExecute.as diff --git a/src/watercolor/execute/DeleteExecute.as b/src/main/flex/watercolor/execute/DeleteExecute.as similarity index 100% rename from src/watercolor/execute/DeleteExecute.as rename to src/main/flex/watercolor/execute/DeleteExecute.as diff --git a/src/watercolor/execute/GroupExecute.as b/src/main/flex/watercolor/execute/GroupExecute.as similarity index 100% rename from src/watercolor/execute/GroupExecute.as rename to src/main/flex/watercolor/execute/GroupExecute.as diff --git a/src/watercolor/execute/IExecute.as b/src/main/flex/watercolor/execute/IExecute.as similarity index 100% rename from src/watercolor/execute/IExecute.as rename to src/main/flex/watercolor/execute/IExecute.as diff --git a/src/watercolor/execute/PropertyExecute.as b/src/main/flex/watercolor/execute/PropertyExecute.as similarity index 100% rename from src/watercolor/execute/PropertyExecute.as rename to src/main/flex/watercolor/execute/PropertyExecute.as diff --git a/src/watercolor/execute/TransformExecute.as b/src/main/flex/watercolor/execute/TransformExecute.as similarity index 100% rename from src/watercolor/execute/TransformExecute.as rename to src/main/flex/watercolor/execute/TransformExecute.as diff --git a/src/watercolor/factories/fxg/BitmapImageFactory.as b/src/main/flex/watercolor/factories/fxg/BitmapImageFactory.as similarity index 100% rename from src/watercolor/factories/fxg/BitmapImageFactory.as rename to src/main/flex/watercolor/factories/fxg/BitmapImageFactory.as diff --git a/src/watercolor/factories/fxg/ChildFactory.as b/src/main/flex/watercolor/factories/fxg/ChildFactory.as similarity index 100% rename from src/watercolor/factories/fxg/ChildFactory.as rename to src/main/flex/watercolor/factories/fxg/ChildFactory.as diff --git a/src/watercolor/factories/fxg/ElementFactory.as b/src/main/flex/watercolor/factories/fxg/ElementFactory.as similarity index 100% rename from src/watercolor/factories/fxg/ElementFactory.as rename to src/main/flex/watercolor/factories/fxg/ElementFactory.as diff --git a/src/watercolor/factories/fxg/EllipseFactory.as b/src/main/flex/watercolor/factories/fxg/EllipseFactory.as similarity index 100% rename from src/watercolor/factories/fxg/EllipseFactory.as rename to src/main/flex/watercolor/factories/fxg/EllipseFactory.as diff --git a/src/watercolor/factories/fxg/FiltersFactory.as b/src/main/flex/watercolor/factories/fxg/FiltersFactory.as similarity index 100% rename from src/watercolor/factories/fxg/FiltersFactory.as rename to src/main/flex/watercolor/factories/fxg/FiltersFactory.as diff --git a/src/watercolor/factories/fxg/GraphicsFactory.as b/src/main/flex/watercolor/factories/fxg/GraphicsFactory.as similarity index 100% rename from src/watercolor/factories/fxg/GraphicsFactory.as rename to src/main/flex/watercolor/factories/fxg/GraphicsFactory.as diff --git a/src/watercolor/factories/fxg/GroupFactory.as b/src/main/flex/watercolor/factories/fxg/GroupFactory.as similarity index 100% rename from src/watercolor/factories/fxg/GroupFactory.as rename to src/main/flex/watercolor/factories/fxg/GroupFactory.as diff --git a/src/watercolor/factories/fxg/LineFactory.as b/src/main/flex/watercolor/factories/fxg/LineFactory.as similarity index 100% rename from src/watercolor/factories/fxg/LineFactory.as rename to src/main/flex/watercolor/factories/fxg/LineFactory.as diff --git a/src/watercolor/factories/fxg/MaskFactory.as b/src/main/flex/watercolor/factories/fxg/MaskFactory.as similarity index 100% rename from src/watercolor/factories/fxg/MaskFactory.as rename to src/main/flex/watercolor/factories/fxg/MaskFactory.as diff --git a/src/watercolor/factories/fxg/PathFactory.as b/src/main/flex/watercolor/factories/fxg/PathFactory.as similarity index 100% rename from src/watercolor/factories/fxg/PathFactory.as rename to src/main/flex/watercolor/factories/fxg/PathFactory.as diff --git a/src/watercolor/factories/fxg/RectFactory.as b/src/main/flex/watercolor/factories/fxg/RectFactory.as similarity index 100% rename from src/watercolor/factories/fxg/RectFactory.as rename to src/main/flex/watercolor/factories/fxg/RectFactory.as diff --git a/src/watercolor/factories/fxg/enums/ElementType.as b/src/main/flex/watercolor/factories/fxg/enums/ElementType.as similarity index 100% rename from src/watercolor/factories/fxg/enums/ElementType.as rename to src/main/flex/watercolor/factories/fxg/enums/ElementType.as diff --git a/src/watercolor/factories/fxg/filters/BlurFilterFactory.as b/src/main/flex/watercolor/factories/fxg/filters/BlurFilterFactory.as similarity index 100% rename from src/watercolor/factories/fxg/filters/BlurFilterFactory.as rename to src/main/flex/watercolor/factories/fxg/filters/BlurFilterFactory.as diff --git a/src/watercolor/factories/fxg/filters/GlowFilterFactory.as b/src/main/flex/watercolor/factories/fxg/filters/GlowFilterFactory.as similarity index 100% rename from src/watercolor/factories/fxg/filters/GlowFilterFactory.as rename to src/main/flex/watercolor/factories/fxg/filters/GlowFilterFactory.as diff --git a/src/watercolor/factories/fxg/graphics/GradientBaseFactory.as b/src/main/flex/watercolor/factories/fxg/graphics/GradientBaseFactory.as similarity index 100% rename from src/watercolor/factories/fxg/graphics/GradientBaseFactory.as rename to src/main/flex/watercolor/factories/fxg/graphics/GradientBaseFactory.as diff --git a/src/watercolor/factories/fxg/graphics/GradientEntryFactory.as b/src/main/flex/watercolor/factories/fxg/graphics/GradientEntryFactory.as similarity index 100% rename from src/watercolor/factories/fxg/graphics/GradientEntryFactory.as rename to src/main/flex/watercolor/factories/fxg/graphics/GradientEntryFactory.as diff --git a/src/watercolor/factories/fxg/graphics/LinearGradientFactory.as b/src/main/flex/watercolor/factories/fxg/graphics/LinearGradientFactory.as similarity index 100% rename from src/watercolor/factories/fxg/graphics/LinearGradientFactory.as rename to src/main/flex/watercolor/factories/fxg/graphics/LinearGradientFactory.as diff --git a/src/watercolor/factories/fxg/graphics/LinearGradientStrokeFactory.as b/src/main/flex/watercolor/factories/fxg/graphics/LinearGradientStrokeFactory.as similarity index 100% rename from src/watercolor/factories/fxg/graphics/LinearGradientStrokeFactory.as rename to src/main/flex/watercolor/factories/fxg/graphics/LinearGradientStrokeFactory.as diff --git a/src/watercolor/factories/fxg/graphics/RadialGradientFactory.as b/src/main/flex/watercolor/factories/fxg/graphics/RadialGradientFactory.as similarity index 100% rename from src/watercolor/factories/fxg/graphics/RadialGradientFactory.as rename to src/main/flex/watercolor/factories/fxg/graphics/RadialGradientFactory.as diff --git a/src/watercolor/factories/fxg/graphics/RadialGradientStrokeFactory.as b/src/main/flex/watercolor/factories/fxg/graphics/RadialGradientStrokeFactory.as similarity index 100% rename from src/watercolor/factories/fxg/graphics/RadialGradientStrokeFactory.as rename to src/main/flex/watercolor/factories/fxg/graphics/RadialGradientStrokeFactory.as diff --git a/src/watercolor/factories/fxg/graphics/SolidColorFactory.as b/src/main/flex/watercolor/factories/fxg/graphics/SolidColorFactory.as similarity index 100% rename from src/watercolor/factories/fxg/graphics/SolidColorFactory.as rename to src/main/flex/watercolor/factories/fxg/graphics/SolidColorFactory.as diff --git a/src/watercolor/factories/fxg/graphics/SolidColorStrokeFactory.as b/src/main/flex/watercolor/factories/fxg/graphics/SolidColorStrokeFactory.as similarity index 100% rename from src/watercolor/factories/fxg/graphics/SolidColorStrokeFactory.as rename to src/main/flex/watercolor/factories/fxg/graphics/SolidColorStrokeFactory.as diff --git a/src/watercolor/factories/fxg/util/FXGAttributes.as b/src/main/flex/watercolor/factories/fxg/util/FXGAttributes.as similarity index 100% rename from src/watercolor/factories/fxg/util/FXGAttributes.as rename to src/main/flex/watercolor/factories/fxg/util/FXGAttributes.as diff --git a/src/watercolor/factories/fxg/util/FXGClassFactoryManager.as b/src/main/flex/watercolor/factories/fxg/util/FXGClassFactoryManager.as similarity index 100% rename from src/watercolor/factories/fxg/util/FXGClassFactoryManager.as rename to src/main/flex/watercolor/factories/fxg/util/FXGClassFactoryManager.as diff --git a/src/watercolor/factories/fxg/util/URIManager.as b/src/main/flex/watercolor/factories/fxg/util/URIManager.as similarity index 100% rename from src/watercolor/factories/fxg/util/URIManager.as rename to src/main/flex/watercolor/factories/fxg/util/URIManager.as diff --git a/src/watercolor/factories/svg/BitmapImageFactory.as b/src/main/flex/watercolor/factories/svg/BitmapImageFactory.as similarity index 100% rename from src/watercolor/factories/svg/BitmapImageFactory.as rename to src/main/flex/watercolor/factories/svg/BitmapImageFactory.as diff --git a/src/watercolor/factories/svg/ElementFactory.as b/src/main/flex/watercolor/factories/svg/ElementFactory.as similarity index 100% rename from src/watercolor/factories/svg/ElementFactory.as rename to src/main/flex/watercolor/factories/svg/ElementFactory.as diff --git a/src/watercolor/factories/svg/EllipseFactory.as b/src/main/flex/watercolor/factories/svg/EllipseFactory.as similarity index 100% rename from src/watercolor/factories/svg/EllipseFactory.as rename to src/main/flex/watercolor/factories/svg/EllipseFactory.as diff --git a/src/watercolor/factories/svg/FilledElementFactory.as b/src/main/flex/watercolor/factories/svg/FilledElementFactory.as similarity index 100% rename from src/watercolor/factories/svg/FilledElementFactory.as rename to src/main/flex/watercolor/factories/svg/FilledElementFactory.as diff --git a/src/watercolor/factories/svg/GraphicElementFactory.as b/src/main/flex/watercolor/factories/svg/GraphicElementFactory.as similarity index 100% rename from src/watercolor/factories/svg/GraphicElementFactory.as rename to src/main/flex/watercolor/factories/svg/GraphicElementFactory.as diff --git a/src/watercolor/factories/svg/GraphicFactory.as b/src/main/flex/watercolor/factories/svg/GraphicFactory.as similarity index 100% rename from src/watercolor/factories/svg/GraphicFactory.as rename to src/main/flex/watercolor/factories/svg/GraphicFactory.as diff --git a/src/watercolor/factories/svg/GroupFactory.as b/src/main/flex/watercolor/factories/svg/GroupFactory.as similarity index 100% rename from src/watercolor/factories/svg/GroupFactory.as rename to src/main/flex/watercolor/factories/svg/GroupFactory.as diff --git a/src/watercolor/factories/svg/LineFactory.as b/src/main/flex/watercolor/factories/svg/LineFactory.as similarity index 100% rename from src/watercolor/factories/svg/LineFactory.as rename to src/main/flex/watercolor/factories/svg/LineFactory.as diff --git a/src/watercolor/factories/svg/PathFactory.as b/src/main/flex/watercolor/factories/svg/PathFactory.as similarity index 100% rename from src/watercolor/factories/svg/PathFactory.as rename to src/main/flex/watercolor/factories/svg/PathFactory.as diff --git a/src/watercolor/factories/svg/RectFactory.as b/src/main/flex/watercolor/factories/svg/RectFactory.as similarity index 100% rename from src/watercolor/factories/svg/RectFactory.as rename to src/main/flex/watercolor/factories/svg/RectFactory.as diff --git a/src/watercolor/factories/svg/StrokedElementFactory.as b/src/main/flex/watercolor/factories/svg/StrokedElementFactory.as similarity index 100% rename from src/watercolor/factories/svg/StrokedElementFactory.as rename to src/main/flex/watercolor/factories/svg/StrokedElementFactory.as diff --git a/src/watercolor/factories/svg/enums/Display.as b/src/main/flex/watercolor/factories/svg/enums/Display.as similarity index 100% rename from src/watercolor/factories/svg/enums/Display.as rename to src/main/flex/watercolor/factories/svg/enums/Display.as diff --git a/src/watercolor/factories/svg/enums/ElementType.as b/src/main/flex/watercolor/factories/svg/enums/ElementType.as similarity index 100% rename from src/watercolor/factories/svg/enums/ElementType.as rename to src/main/flex/watercolor/factories/svg/enums/ElementType.as diff --git a/src/watercolor/factories/svg/enums/FillRule.as b/src/main/flex/watercolor/factories/svg/enums/FillRule.as similarity index 100% rename from src/watercolor/factories/svg/enums/FillRule.as rename to src/main/flex/watercolor/factories/svg/enums/FillRule.as diff --git a/src/watercolor/factories/svg/enums/Visibility.as b/src/main/flex/watercolor/factories/svg/enums/Visibility.as similarity index 100% rename from src/watercolor/factories/svg/enums/Visibility.as rename to src/main/flex/watercolor/factories/svg/enums/Visibility.as diff --git a/src/watercolor/factories/svg/graphics/GradientBaseFactory.as b/src/main/flex/watercolor/factories/svg/graphics/GradientBaseFactory.as similarity index 100% rename from src/watercolor/factories/svg/graphics/GradientBaseFactory.as rename to src/main/flex/watercolor/factories/svg/graphics/GradientBaseFactory.as diff --git a/src/watercolor/factories/svg/graphics/GradientEntryFactory.as b/src/main/flex/watercolor/factories/svg/graphics/GradientEntryFactory.as similarity index 100% rename from src/watercolor/factories/svg/graphics/GradientEntryFactory.as rename to src/main/flex/watercolor/factories/svg/graphics/GradientEntryFactory.as diff --git a/src/watercolor/factories/svg/graphics/LinearGradientFactory.as b/src/main/flex/watercolor/factories/svg/graphics/LinearGradientFactory.as similarity index 100% rename from src/watercolor/factories/svg/graphics/LinearGradientFactory.as rename to src/main/flex/watercolor/factories/svg/graphics/LinearGradientFactory.as diff --git a/src/watercolor/factories/svg/graphics/RadialGradientFactory.as b/src/main/flex/watercolor/factories/svg/graphics/RadialGradientFactory.as similarity index 100% rename from src/watercolor/factories/svg/graphics/RadialGradientFactory.as rename to src/main/flex/watercolor/factories/svg/graphics/RadialGradientFactory.as diff --git a/src/watercolor/factories/svg/namespaces/ns_rain.as b/src/main/flex/watercolor/factories/svg/namespaces/ns_rain.as similarity index 100% rename from src/watercolor/factories/svg/namespaces/ns_rain.as rename to src/main/flex/watercolor/factories/svg/namespaces/ns_rain.as diff --git a/src/watercolor/factories/svg/namespaces/ns_svg.as b/src/main/flex/watercolor/factories/svg/namespaces/ns_svg.as similarity index 100% rename from src/watercolor/factories/svg/namespaces/ns_svg.as rename to src/main/flex/watercolor/factories/svg/namespaces/ns_svg.as diff --git a/src/watercolor/factories/svg/namespaces/ns_xlink.as b/src/main/flex/watercolor/factories/svg/namespaces/ns_xlink.as similarity index 100% rename from src/watercolor/factories/svg/namespaces/ns_xlink.as rename to src/main/flex/watercolor/factories/svg/namespaces/ns_xlink.as diff --git a/src/watercolor/factories/svg/util/SVGAttributes.as b/src/main/flex/watercolor/factories/svg/util/SVGAttributes.as similarity index 100% rename from src/watercolor/factories/svg/util/SVGAttributes.as rename to src/main/flex/watercolor/factories/svg/util/SVGAttributes.as diff --git a/src/watercolor/factories/svg/util/SVGClassFactoryManager.as b/src/main/flex/watercolor/factories/svg/util/SVGClassFactoryManager.as similarity index 100% rename from src/watercolor/factories/svg/util/SVGClassFactoryManager.as rename to src/main/flex/watercolor/factories/svg/util/SVGClassFactoryManager.as diff --git a/src/watercolor/factories/svg/util/URIManager.as b/src/main/flex/watercolor/factories/svg/util/URIManager.as similarity index 100% rename from src/watercolor/factories/svg/util/URIManager.as rename to src/main/flex/watercolor/factories/svg/util/URIManager.as diff --git a/src/watercolor/geom/Ellipse.as b/src/main/flex/watercolor/geom/Ellipse.as similarity index 100% rename from src/watercolor/geom/Ellipse.as rename to src/main/flex/watercolor/geom/Ellipse.as diff --git a/src/watercolor/managers/HistoryManager.as b/src/main/flex/watercolor/managers/HistoryManager.as similarity index 100% rename from src/watercolor/managers/HistoryManager.as rename to src/main/flex/watercolor/managers/HistoryManager.as diff --git a/src/watercolor/managers/SelectionManager.as b/src/main/flex/watercolor/managers/SelectionManager.as similarity index 100% rename from src/watercolor/managers/SelectionManager.as rename to src/main/flex/watercolor/managers/SelectionManager.as diff --git a/src/watercolor/math/CubicBezierCurve.as b/src/main/flex/watercolor/math/CubicBezierCurve.as similarity index 100% rename from src/watercolor/math/CubicBezierCurve.as rename to src/main/flex/watercolor/math/CubicBezierCurve.as diff --git a/src/watercolor/math/EuclideanLine.as b/src/main/flex/watercolor/math/EuclideanLine.as similarity index 100% rename from src/watercolor/math/EuclideanLine.as rename to src/main/flex/watercolor/math/EuclideanLine.as diff --git a/src/watercolor/math/FractionNumber.as b/src/main/flex/watercolor/math/FractionNumber.as similarity index 100% rename from src/watercolor/math/FractionNumber.as rename to src/main/flex/watercolor/math/FractionNumber.as diff --git a/src/watercolor/math/IntersectionPoint.as b/src/main/flex/watercolor/math/IntersectionPoint.as similarity index 100% rename from src/watercolor/math/IntersectionPoint.as rename to src/main/flex/watercolor/math/IntersectionPoint.as diff --git a/src/watercolor/math/QuadraticBezierCurve.as b/src/main/flex/watercolor/math/QuadraticBezierCurve.as similarity index 100% rename from src/watercolor/math/QuadraticBezierCurve.as rename to src/main/flex/watercolor/math/QuadraticBezierCurve.as diff --git a/src/watercolor/math/StraightLine.as b/src/main/flex/watercolor/math/StraightLine.as similarity index 100% rename from src/watercolor/math/StraightLine.as rename to src/main/flex/watercolor/math/StraightLine.as diff --git a/src/watercolor/math/interfaces/IBezierCurve.as b/src/main/flex/watercolor/math/interfaces/IBezierCurve.as similarity index 100% rename from src/watercolor/math/interfaces/IBezierCurve.as rename to src/main/flex/watercolor/math/interfaces/IBezierCurve.as diff --git a/src/watercolor/pathData/PathData.as b/src/main/flex/watercolor/pathData/PathData.as similarity index 100% rename from src/watercolor/pathData/PathData.as rename to src/main/flex/watercolor/pathData/PathData.as diff --git a/src/watercolor/pathData/PathDataClosePathCommand.as b/src/main/flex/watercolor/pathData/PathDataClosePathCommand.as similarity index 100% rename from src/watercolor/pathData/PathDataClosePathCommand.as rename to src/main/flex/watercolor/pathData/PathDataClosePathCommand.as diff --git a/src/watercolor/pathData/PathDataCommand.as b/src/main/flex/watercolor/pathData/PathDataCommand.as similarity index 100% rename from src/watercolor/pathData/PathDataCommand.as rename to src/main/flex/watercolor/pathData/PathDataCommand.as diff --git a/src/watercolor/pathData/PathDataContour.as b/src/main/flex/watercolor/pathData/PathDataContour.as similarity index 100% rename from src/watercolor/pathData/PathDataContour.as rename to src/main/flex/watercolor/pathData/PathDataContour.as diff --git a/src/watercolor/pathData/PathDataCubicBezierCommand.as b/src/main/flex/watercolor/pathData/PathDataCubicBezierCommand.as similarity index 100% rename from src/watercolor/pathData/PathDataCubicBezierCommand.as rename to src/main/flex/watercolor/pathData/PathDataCubicBezierCommand.as diff --git a/src/watercolor/pathData/PathDataHorizontialLineCommand.as b/src/main/flex/watercolor/pathData/PathDataHorizontialLineCommand.as similarity index 100% rename from src/watercolor/pathData/PathDataHorizontialLineCommand.as rename to src/main/flex/watercolor/pathData/PathDataHorizontialLineCommand.as diff --git a/src/watercolor/pathData/PathDataLineCommand.as b/src/main/flex/watercolor/pathData/PathDataLineCommand.as similarity index 100% rename from src/watercolor/pathData/PathDataLineCommand.as rename to src/main/flex/watercolor/pathData/PathDataLineCommand.as diff --git a/src/watercolor/pathData/PathDataQuadraticBezierCommand.as b/src/main/flex/watercolor/pathData/PathDataQuadraticBezierCommand.as similarity index 100% rename from src/watercolor/pathData/PathDataQuadraticBezierCommand.as rename to src/main/flex/watercolor/pathData/PathDataQuadraticBezierCommand.as diff --git a/src/watercolor/pathData/PathDataSmoothCubicBezierCommand.as b/src/main/flex/watercolor/pathData/PathDataSmoothCubicBezierCommand.as similarity index 100% rename from src/watercolor/pathData/PathDataSmoothCubicBezierCommand.as rename to src/main/flex/watercolor/pathData/PathDataSmoothCubicBezierCommand.as diff --git a/src/watercolor/pathData/PathDataSmoothQuadraticBezierCommand.as b/src/main/flex/watercolor/pathData/PathDataSmoothQuadraticBezierCommand.as similarity index 100% rename from src/watercolor/pathData/PathDataSmoothQuadraticBezierCommand.as rename to src/main/flex/watercolor/pathData/PathDataSmoothQuadraticBezierCommand.as diff --git a/src/watercolor/pathData/PathDataVerticalLineCommand.as b/src/main/flex/watercolor/pathData/PathDataVerticalLineCommand.as similarity index 100% rename from src/watercolor/pathData/PathDataVerticalLineCommand.as rename to src/main/flex/watercolor/pathData/PathDataVerticalLineCommand.as diff --git a/src/watercolor/pathData/interfaces/IPathDataStructuralCommand.as b/src/main/flex/watercolor/pathData/interfaces/IPathDataStructuralCommand.as similarity index 100% rename from src/watercolor/pathData/interfaces/IPathDataStructuralCommand.as rename to src/main/flex/watercolor/pathData/interfaces/IPathDataStructuralCommand.as diff --git a/src/watercolor/pathData/interfaces/IPathDataVisualCommand.as b/src/main/flex/watercolor/pathData/interfaces/IPathDataVisualCommand.as similarity index 100% rename from src/watercolor/pathData/interfaces/IPathDataVisualCommand.as rename to src/main/flex/watercolor/pathData/interfaces/IPathDataVisualCommand.as diff --git a/src/watercolor/skins/BrightnessSelectorSkin.mxml b/src/main/flex/watercolor/skins/BrightnessSelectorSkin.mxml similarity index 100% rename from src/watercolor/skins/BrightnessSelectorSkin.mxml rename to src/main/flex/watercolor/skins/BrightnessSelectorSkin.mxml diff --git a/src/watercolor/skins/BrightnessSelectorTrackSkin.mxml b/src/main/flex/watercolor/skins/BrightnessSelectorTrackSkin.mxml similarity index 100% rename from src/watercolor/skins/BrightnessSelectorTrackSkin.mxml rename to src/main/flex/watercolor/skins/BrightnessSelectorTrackSkin.mxml diff --git a/src/watercolor/skins/GridSkin.mxml b/src/main/flex/watercolor/skins/GridSkin.mxml similarity index 100% rename from src/watercolor/skins/GridSkin.mxml rename to src/main/flex/watercolor/skins/GridSkin.mxml diff --git a/src/watercolor/skins/HSBColorPickerSkin.mxml b/src/main/flex/watercolor/skins/HSBColorPickerSkin.mxml similarity index 100% rename from src/watercolor/skins/HSBColorPickerSkin.mxml rename to src/main/flex/watercolor/skins/HSBColorPickerSkin.mxml diff --git a/src/watercolor/skins/HSBColorWheelSkin.mxml b/src/main/flex/watercolor/skins/HSBColorWheelSkin.mxml similarity index 100% rename from src/watercolor/skins/HSBColorWheelSkin.mxml rename to src/main/flex/watercolor/skins/HSBColorWheelSkin.mxml diff --git a/src/watercolor/skins/IsolationLayerSkin.mxml b/src/main/flex/watercolor/skins/IsolationLayerSkin.mxml similarity index 100% rename from src/watercolor/skins/IsolationLayerSkin.mxml rename to src/main/flex/watercolor/skins/IsolationLayerSkin.mxml diff --git a/src/watercolor/skins/SelectionLayerSkin.mxml b/src/main/flex/watercolor/skins/SelectionLayerSkin.mxml similarity index 100% rename from src/watercolor/skins/SelectionLayerSkin.mxml rename to src/main/flex/watercolor/skins/SelectionLayerSkin.mxml diff --git a/src/watercolor/skins/TransformSkin.mxml b/src/main/flex/watercolor/skins/TransformSkin.mxml similarity index 100% rename from src/watercolor/skins/TransformSkin.mxml rename to src/main/flex/watercolor/skins/TransformSkin.mxml diff --git a/src/watercolor/skins/WorkareaSkin.mxml b/src/main/flex/watercolor/skins/WorkareaSkin.mxml similarity index 100% rename from src/watercolor/skins/WorkareaSkin.mxml rename to src/main/flex/watercolor/skins/WorkareaSkin.mxml diff --git a/src/watercolor/transform/Handle.as b/src/main/flex/watercolor/transform/Handle.as similarity index 100% rename from src/watercolor/transform/Handle.as rename to src/main/flex/watercolor/transform/Handle.as diff --git a/src/watercolor/transform/HandleCenterPointEnum.as b/src/main/flex/watercolor/transform/HandleCenterPointEnum.as similarity index 100% rename from src/watercolor/transform/HandleCenterPointEnum.as rename to src/main/flex/watercolor/transform/HandleCenterPointEnum.as diff --git a/src/watercolor/transform/TransformFlip.as b/src/main/flex/watercolor/transform/TransformFlip.as similarity index 100% rename from src/watercolor/transform/TransformFlip.as rename to src/main/flex/watercolor/transform/TransformFlip.as diff --git a/src/watercolor/transform/TransformLayer.as b/src/main/flex/watercolor/transform/TransformLayer.as similarity index 100% rename from src/watercolor/transform/TransformLayer.as rename to src/main/flex/watercolor/transform/TransformLayer.as diff --git a/src/watercolor/transform/TransformMode.as b/src/main/flex/watercolor/transform/TransformMode.as similarity index 100% rename from src/watercolor/transform/TransformMode.as rename to src/main/flex/watercolor/transform/TransformMode.as diff --git a/src/watercolor/utils/CoordinateUtils.as b/src/main/flex/watercolor/utils/CoordinateUtils.as similarity index 100% rename from src/watercolor/utils/CoordinateUtils.as rename to src/main/flex/watercolor/utils/CoordinateUtils.as diff --git a/src/watercolor/utils/ExecuteUtil.as b/src/main/flex/watercolor/utils/ExecuteUtil.as similarity index 100% rename from src/watercolor/utils/ExecuteUtil.as rename to src/main/flex/watercolor/utils/ExecuteUtil.as diff --git a/src/watercolor/utils/GroupingUtil.as b/src/main/flex/watercolor/utils/GroupingUtil.as similarity index 100% rename from src/watercolor/utils/GroupingUtil.as rename to src/main/flex/watercolor/utils/GroupingUtil.as diff --git a/src/watercolor/utils/HSBColorUtil.as b/src/main/flex/watercolor/utils/HSBColorUtil.as similarity index 100% rename from src/watercolor/utils/HSBColorUtil.as rename to src/main/flex/watercolor/utils/HSBColorUtil.as diff --git a/src/watercolor/utils/IntersectionUtil.as b/src/main/flex/watercolor/utils/IntersectionUtil.as similarity index 100% rename from src/watercolor/utils/IntersectionUtil.as rename to src/main/flex/watercolor/utils/IntersectionUtil.as diff --git a/src/watercolor/utils/LayerUtil.as b/src/main/flex/watercolor/utils/LayerUtil.as similarity index 100% rename from src/watercolor/utils/LayerUtil.as rename to src/main/flex/watercolor/utils/LayerUtil.as diff --git a/src/watercolor/utils/MatrixInfo.as b/src/main/flex/watercolor/utils/MatrixInfo.as similarity index 100% rename from src/watercolor/utils/MatrixInfo.as rename to src/main/flex/watercolor/utils/MatrixInfo.as diff --git a/src/watercolor/utils/MatrixUtil.as b/src/main/flex/watercolor/utils/MatrixUtil.as similarity index 100% rename from src/watercolor/utils/MatrixUtil.as rename to src/main/flex/watercolor/utils/MatrixUtil.as diff --git a/src/watercolor/utils/PathDataUtil.as b/src/main/flex/watercolor/utils/PathDataUtil.as similarity index 100% rename from src/watercolor/utils/PathDataUtil.as rename to src/main/flex/watercolor/utils/PathDataUtil.as diff --git a/src/watercolor/utils/SVGParser.as b/src/main/flex/watercolor/utils/SVGParser.as similarity index 100% rename from src/watercolor/utils/SVGParser.as rename to src/main/flex/watercolor/utils/SVGParser.as diff --git a/src/watercolor/utils/SVGUtil.as b/src/main/flex/watercolor/utils/SVGUtil.as similarity index 100% rename from src/watercolor/utils/SVGUtil.as rename to src/main/flex/watercolor/utils/SVGUtil.as diff --git a/src/watercolor/utils/TransformUtil.as b/src/main/flex/watercolor/utils/TransformUtil.as similarity index 100% rename from src/watercolor/utils/TransformUtil.as rename to src/main/flex/watercolor/utils/TransformUtil.as diff --git a/src/watercolor/utils/VisualElementUtil.as b/src/main/flex/watercolor/utils/VisualElementUtil.as similarity index 100% rename from src/watercolor/utils/VisualElementUtil.as rename to src/main/flex/watercolor/utils/VisualElementUtil.as diff --git a/src/watercolor/utils/WorkareaUtil.as b/src/main/flex/watercolor/utils/WorkareaUtil.as similarity index 100% rename from src/watercolor/utils/WorkareaUtil.as rename to src/main/flex/watercolor/utils/WorkareaUtil.as diff --git a/src/test/flex/flexUnitTests/WatercolorTestSuite.as b/src/test/flex/flexUnitTests/WatercolorTestSuite.as new file mode 100644 index 0000000..fa8b00e --- /dev/null +++ b/src/test/flex/flexUnitTests/WatercolorTestSuite.as @@ -0,0 +1,34 @@ +package flexUnitTests +{ + import flexUnitTests.commands.execUtils.*; + import flexUnitTests.factories.fxg.FXGToSparkFactoryTest; + import flexUnitTests.factories.svg.SVGToSparkFactoryTest; + import flexUnitTests.managers.HistoryManagerTest; + import flexUnitTests.utils.TransformUtilTest; + + [Suite] + [RunWith("org.flexunit.runners.Suite")] + public class WatercolorTestSuite + { + + public var arrangeExecuteTests:ArrangeExecuteTest; + + public var createExecuteTests:CreateExecuteTest; + + public var deleteExecuteTests:DeleteExecuteTest; + + public var historyManagerTests:HistoryManagerTest; + + public var propertyExecuteTests:PropertyExecuteTest; + + public var transformExecuteTests:TransformExecuteTest; + + public var groupExecuteTests:GroupExecuteTest; + + public var svgToSparkFactoryTests:SVGToSparkFactoryTest; + + public var fxgToSparkFactoryTests:FXGToSparkFactoryTest; + + public var transformUtilTests:TransformUtilTest; + } +} \ No newline at end of file diff --git a/src/flexUnitTests/commands/execUtils/ArrangeExecuteTests.as b/src/test/flex/flexUnitTests/commands/execUtils/ArrangeExecuteTest.as similarity index 97% rename from src/flexUnitTests/commands/execUtils/ArrangeExecuteTests.as rename to src/test/flex/flexUnitTests/commands/execUtils/ArrangeExecuteTest.as index 1098f4f..6505d57 100644 --- a/src/flexUnitTests/commands/execUtils/ArrangeExecuteTests.as +++ b/src/test/flex/flexUnitTests/commands/execUtils/ArrangeExecuteTest.as @@ -12,7 +12,7 @@ package flexUnitTests.commands.execUtils import watercolor.elements.Element; import watercolor.elements.Rect; - public class ArrangeExecuteTests + public class ArrangeExecuteTest { public var element:Element; diff --git a/src/flexUnitTests/commands/execUtils/CreateExecuteTests.as b/src/test/flex/flexUnitTests/commands/execUtils/CreateExecuteTest.as similarity index 97% rename from src/flexUnitTests/commands/execUtils/CreateExecuteTests.as rename to src/test/flex/flexUnitTests/commands/execUtils/CreateExecuteTest.as index b8854ef..93084b1 100644 --- a/src/flexUnitTests/commands/execUtils/CreateExecuteTests.as +++ b/src/test/flex/flexUnitTests/commands/execUtils/CreateExecuteTest.as @@ -13,7 +13,7 @@ package flexUnitTests.commands.execUtils import watercolor.elements.Layer; import watercolor.elements.Rect; - public class CreateExecuteTests + public class CreateExecuteTest { public var element:Element; diff --git a/src/flexUnitTests/commands/execUtils/DeleteExecuteTests.as b/src/test/flex/flexUnitTests/commands/execUtils/DeleteExecuteTest.as similarity index 97% rename from src/flexUnitTests/commands/execUtils/DeleteExecuteTests.as rename to src/test/flex/flexUnitTests/commands/execUtils/DeleteExecuteTest.as index ee332e8..1624262 100644 --- a/src/flexUnitTests/commands/execUtils/DeleteExecuteTests.as +++ b/src/test/flex/flexUnitTests/commands/execUtils/DeleteExecuteTest.as @@ -12,7 +12,7 @@ package flexUnitTests.commands.execUtils import watercolor.elements.Element; import watercolor.elements.Rect; - public class DeleteExecuteTests + public class DeleteExecuteTest { public var vo:DeleteVO; diff --git a/src/flexUnitTests/commands/execUtils/GroupExecuteTests.as b/src/test/flex/flexUnitTests/commands/execUtils/GroupExecuteTest.as similarity index 86% rename from src/flexUnitTests/commands/execUtils/GroupExecuteTests.as rename to src/test/flex/flexUnitTests/commands/execUtils/GroupExecuteTest.as index d98d0bf..f246a7e 100644 --- a/src/flexUnitTests/commands/execUtils/GroupExecuteTests.as +++ b/src/test/flex/flexUnitTests/commands/execUtils/GroupExecuteTest.as @@ -1,6 +1,6 @@ package flexUnitTests.commands.execUtils { - public class GroupExecuteTests + public class GroupExecuteTest { //TODO: Add Unit Tests for GroupExecute diff --git a/src/flexUnitTests/commands/execUtils/PropertyExecuteTests.as b/src/test/flex/flexUnitTests/commands/execUtils/PropertyExecuteTest.as similarity index 95% rename from src/flexUnitTests/commands/execUtils/PropertyExecuteTests.as rename to src/test/flex/flexUnitTests/commands/execUtils/PropertyExecuteTest.as index c210b92..d53ad27 100644 --- a/src/flexUnitTests/commands/execUtils/PropertyExecuteTests.as +++ b/src/test/flex/flexUnitTests/commands/execUtils/PropertyExecuteTest.as @@ -4,14 +4,12 @@ package flexUnitTests.commands.execUtils import mx.core.IVisualElement; - import org.hamcrest.mxml.object.Null; - import watercolor.utils.ExecuteUtil; import watercolor.commands.vo.PropertyVO; import watercolor.elements.Element; import watercolor.elements.Rect; - public class PropertyExecuteTests + public class PropertyExecuteTest { public var vo:PropertyVO; diff --git a/src/flexUnitTests/commands/execUtils/TransformExecuteTests.as b/src/test/flex/flexUnitTests/commands/execUtils/TransformExecuteTest.as similarity index 97% rename from src/flexUnitTests/commands/execUtils/TransformExecuteTests.as rename to src/test/flex/flexUnitTests/commands/execUtils/TransformExecuteTest.as index 35539e5..68d0e5b 100644 --- a/src/flexUnitTests/commands/execUtils/TransformExecuteTests.as +++ b/src/test/flex/flexUnitTests/commands/execUtils/TransformExecuteTest.as @@ -8,7 +8,7 @@ package flexUnitTests.commands.execUtils import watercolor.elements.Rect; import watercolor.utils.ExecuteUtil; - public class TransformExecuteTests + public class TransformExecuteTest { public var element:Rect; diff --git a/src/flexUnitTests/factories/fxg/FXGToSparkFactoryTests.as b/src/test/flex/flexUnitTests/factories/fxg/FXGToSparkFactoryTest.as similarity index 99% rename from src/flexUnitTests/factories/fxg/FXGToSparkFactoryTests.as rename to src/test/flex/flexUnitTests/factories/fxg/FXGToSparkFactoryTest.as index af69360..be88194 100644 --- a/src/flexUnitTests/factories/fxg/FXGToSparkFactoryTests.as +++ b/src/test/flex/flexUnitTests/factories/fxg/FXGToSparkFactoryTest.as @@ -17,7 +17,7 @@ package flexUnitTests.factories.fxg import watercolor.factories.fxg.RectFactory; import watercolor.factories.fxg.util.URIManager; - public class FXGToSparkFactoryTests + public class FXGToSparkFactoryTest { [Before] public function setUp():void diff --git a/src/flexUnitTests/factories/svg/BasicShapes.fxg b/src/test/flex/flexUnitTests/factories/svg/BasicShapes.fxg similarity index 100% rename from src/flexUnitTests/factories/svg/BasicShapes.fxg rename to src/test/flex/flexUnitTests/factories/svg/BasicShapes.fxg diff --git a/src/flexUnitTests/factories/svg/BasicShapes.svg b/src/test/flex/flexUnitTests/factories/svg/BasicShapes.svg similarity index 100% rename from src/flexUnitTests/factories/svg/BasicShapes.svg rename to src/test/flex/flexUnitTests/factories/svg/BasicShapes.svg diff --git a/src/flexUnitTests/factories/svg/SVGToSparkFactoryTests.as b/src/test/flex/flexUnitTests/factories/svg/SVGToSparkFactoryTest.as similarity index 99% rename from src/flexUnitTests/factories/svg/SVGToSparkFactoryTests.as rename to src/test/flex/flexUnitTests/factories/svg/SVGToSparkFactoryTest.as index f8e7f94..0a73b9c 100644 --- a/src/flexUnitTests/factories/svg/SVGToSparkFactoryTests.as +++ b/src/test/flex/flexUnitTests/factories/svg/SVGToSparkFactoryTest.as @@ -50,7 +50,7 @@ package flexUnitTests.factories.svg import watercolor.factories.svg.graphics.RadialGradientFactory; import watercolor.factories.svg.util.URIManager; - public class SVGToSparkFactoryTests + public class SVGToSparkFactoryTest { [Before] public function setUp():void diff --git a/src/flexUnitTests/managers/HistoryManagerTests.as b/src/test/flex/flexUnitTests/managers/HistoryManagerTest.as similarity index 96% rename from src/flexUnitTests/managers/HistoryManagerTests.as rename to src/test/flex/flexUnitTests/managers/HistoryManagerTest.as index 5e7c774..9713471 100644 --- a/src/flexUnitTests/managers/HistoryManagerTests.as +++ b/src/test/flex/flexUnitTests/managers/HistoryManagerTest.as @@ -6,7 +6,7 @@ package flexUnitTests.managers import watercolor.elements.Rect; import watercolor.managers.HistoryManager; - public class HistoryManagerTests + public class HistoryManagerTest { private var historyManager:HistoryManager; diff --git a/src/flexUnitTests/utils/TransformUtilTests.as b/src/test/flex/flexUnitTests/utils/TransformUtilTest.as similarity index 98% rename from src/flexUnitTests/utils/TransformUtilTests.as rename to src/test/flex/flexUnitTests/utils/TransformUtilTest.as index 6d2539a..5f6a9a0 100644 --- a/src/flexUnitTests/utils/TransformUtilTests.as +++ b/src/test/flex/flexUnitTests/utils/TransformUtilTest.as @@ -13,7 +13,7 @@ package flexUnitTests.utils import watercolor.utils.TransformUtil; - public class TransformUtilTests + public class TransformUtilTest { private var element:Element;