summaryrefslogtreecommitdiff
path: root/src/main/java/org/cristalise/dev/canvas
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/cristalise/dev/canvas')
-rw-r--r--src/main/java/org/cristalise/dev/canvas/CanvasEdgeRenderer.java48
-rw-r--r--src/main/java/org/cristalise/dev/canvas/CanvasVertexFactory.java57
-rw-r--r--src/main/java/org/cristalise/dev/canvas/CanvasVertexRenderer.java47
-rw-r--r--src/main/java/org/cristalise/dev/canvas/CollectionEdge.java34
-rw-r--r--src/main/java/org/cristalise/dev/canvas/CollectionVertex.java34
-rw-r--r--src/main/java/org/cristalise/dev/canvas/ItemCanvas.java32
-rw-r--r--src/main/java/org/cristalise/dev/canvas/ItemDescriptionVertex.java34
-rw-r--r--src/main/java/org/cristalise/dev/canvas/MemberEdge.java34
8 files changed, 320 insertions, 0 deletions
diff --git a/src/main/java/org/cristalise/dev/canvas/CanvasEdgeRenderer.java b/src/main/java/org/cristalise/dev/canvas/CanvasEdgeRenderer.java
new file mode 100644
index 0000000..be15ef6
--- /dev/null
+++ b/src/main/java/org/cristalise/dev/canvas/CanvasEdgeRenderer.java
@@ -0,0 +1,48 @@
+/*
+ * ItemCanvasEdgeRenderer.java
+ *
+ * Copyright (c) 2013, The CRISTAL Consortium. All rights reserved.
+ *
+ * CRISTAL kernel is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see:
+ * http://www.gnu.org/licenses/
+ */
+
+package org.cristalise.dev.canvas;
+
+import java.awt.Graphics2D;
+
+import org.cristalise.kernel.graph.model.DirectedEdge;
+
+import org.cristalise.gui.graph.view.DirectedEdgeRenderer;
+
+
+public class CanvasEdgeRenderer implements DirectedEdgeRenderer {
+
+ /**
+ *
+ */
+ public CanvasEdgeRenderer() {
+ // TODO Auto-generated constructor stub
+ }
+
+ /* (non-Javadoc)
+ * @see org.cristalise.kernel.gui.graph.view.DirectedEdgeRenderer#draw(java.awt.Graphics2D, org.cristalise.kernel.graph.model.DirectedEdge)
+ */
+ @Override
+ public void draw(Graphics2D g2d, DirectedEdge directedEdge) {
+ // TODO Auto-generated method stub
+
+ }
+
+}
diff --git a/src/main/java/org/cristalise/dev/canvas/CanvasVertexFactory.java b/src/main/java/org/cristalise/dev/canvas/CanvasVertexFactory.java
new file mode 100644
index 0000000..63dc77d
--- /dev/null
+++ b/src/main/java/org/cristalise/dev/canvas/CanvasVertexFactory.java
@@ -0,0 +1,57 @@
+/*
+ * VertexFactory.java
+ *
+ * Copyright (c) 2013, The CRISTAL Consortium. All rights reserved.
+ *
+ * CRISTAL kernel is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see:
+ * http://www.gnu.org/licenses/
+ */
+
+package org.cristalise.dev.canvas;
+
+import org.cristalise.kernel.graph.model.GraphModelManager;
+import org.cristalise.kernel.graph.model.GraphPoint;
+import org.cristalise.kernel.graph.model.TypeNameAndConstructionInfo;
+import org.cristalise.kernel.graph.model.VertexFactory;
+
+public class CanvasVertexFactory implements VertexFactory {
+
+ /**
+ *
+ */
+ public CanvasVertexFactory() {
+ // TODO Auto-generated constructor stub
+ }
+
+ /* (non-Javadoc)
+ * @see org.cristalise.kernel.graph.model.VertexFactory#create(org.cristalise.kernel.graph.model.GraphModelManager, org.cristalise.kernel.graph.model.GraphPoint, org.cristalise.kernel.graph.model.TypeNameAndConstructionInfo)
+ */
+ @Override
+ public void create(GraphModelManager graphModelManager,
+ GraphPoint location,
+ TypeNameAndConstructionInfo typeNameAndConstructionInfo)
+ throws Exception {
+ // TODO Auto-generated method stub
+
+ }
+
+ /* (non-Javadoc)
+ * @see org.cristalise.kernel.graph.model.VertexFactory#setCreationContext(java.lang.Object)
+ */
+ @Override
+ public void setCreationContext(Object newContext) {
+ // TODO Auto-generated method stub
+
+ }
+}
diff --git a/src/main/java/org/cristalise/dev/canvas/CanvasVertexRenderer.java b/src/main/java/org/cristalise/dev/canvas/CanvasVertexRenderer.java
new file mode 100644
index 0000000..c34e814
--- /dev/null
+++ b/src/main/java/org/cristalise/dev/canvas/CanvasVertexRenderer.java
@@ -0,0 +1,47 @@
+/*
+ * ItemDescriptionRenderer.java
+ *
+ * Copyright (c) 2013, The CRISTAL Consortium. All rights reserved.
+ *
+ * CRISTAL kernel is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see:
+ * http://www.gnu.org/licenses/
+ */
+
+package org.cristalise.dev.canvas;
+
+import java.awt.Graphics2D;
+
+import org.cristalise.gui.graph.view.VertexRenderer;
+import org.cristalise.kernel.graph.model.Vertex;
+
+
+public class CanvasVertexRenderer implements VertexRenderer {
+
+ /**
+ *
+ */
+ public CanvasVertexRenderer() {
+ // TODO Auto-generated constructor stub
+ }
+
+ /* (non-Javadoc)
+ * @see org.cristalise.kernel.gui.graph.view.VertexRenderer#draw(java.awt.Graphics2D, org.cristalise.kernel.graph.model.Vertex)
+ */
+ @Override
+ public void draw(Graphics2D g2d, Vertex vertex) {
+ // TODO Auto-generated method stub
+
+ }
+
+}
diff --git a/src/main/java/org/cristalise/dev/canvas/CollectionEdge.java b/src/main/java/org/cristalise/dev/canvas/CollectionEdge.java
new file mode 100644
index 0000000..48d3cc9
--- /dev/null
+++ b/src/main/java/org/cristalise/dev/canvas/CollectionEdge.java
@@ -0,0 +1,34 @@
+/*
+ * CollectionEdge.java
+ *
+ * Copyright (c) 2013, The CRISTAL Consortium. All rights reserved.
+ *
+ * CRISTAL kernel is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see:
+ * http://www.gnu.org/licenses/
+ */
+
+package org.cristalise.dev.canvas;
+
+import org.cristalise.kernel.graph.model.DirectedEdge;
+
+public class CollectionEdge extends DirectedEdge {
+
+ /**
+ *
+ */
+ public CollectionEdge() {
+ // TODO Auto-generated constructor stub
+ }
+
+}
diff --git a/src/main/java/org/cristalise/dev/canvas/CollectionVertex.java b/src/main/java/org/cristalise/dev/canvas/CollectionVertex.java
new file mode 100644
index 0000000..cef80b5
--- /dev/null
+++ b/src/main/java/org/cristalise/dev/canvas/CollectionVertex.java
@@ -0,0 +1,34 @@
+/*
+ * CollectionNode.java
+ *
+ * Copyright (c) 2013, The CRISTAL Consortium. All rights reserved.
+ *
+ * CRISTAL kernel is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see:
+ * http://www.gnu.org/licenses/
+ */
+
+package org.cristalise.dev.canvas;
+
+import org.cristalise.kernel.graph.model.GraphableVertex;
+
+public class CollectionVertex extends GraphableVertex {
+
+ /**
+ *
+ */
+ public CollectionVertex() {
+ // TODO Auto-generated constructor stub
+ }
+
+}
diff --git a/src/main/java/org/cristalise/dev/canvas/ItemCanvas.java b/src/main/java/org/cristalise/dev/canvas/ItemCanvas.java
new file mode 100644
index 0000000..85a0f03
--- /dev/null
+++ b/src/main/java/org/cristalise/dev/canvas/ItemCanvas.java
@@ -0,0 +1,32 @@
+/*
+ * ItemCanvas.java
+ *
+ * Copyright (c) 2013, The CRISTAL Consortium. All rights reserved.
+ *
+ * CRISTAL kernel is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see:
+ * http://www.gnu.org/licenses/
+ */
+
+package org.cristalise.dev.canvas;
+
+public class ItemCanvas {
+
+ /**
+ *
+ */
+ public ItemCanvas() {
+ // TODO Auto-generated constructor stub
+ }
+
+}
diff --git a/src/main/java/org/cristalise/dev/canvas/ItemDescriptionVertex.java b/src/main/java/org/cristalise/dev/canvas/ItemDescriptionVertex.java
new file mode 100644
index 0000000..1d30d10
--- /dev/null
+++ b/src/main/java/org/cristalise/dev/canvas/ItemDescriptionVertex.java
@@ -0,0 +1,34 @@
+/*
+ * ItemDescription.java
+ *
+ * Copyright (c) 2013, The CRISTAL Consortium. All rights reserved.
+ *
+ * CRISTAL kernel is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see:
+ * http://www.gnu.org/licenses/
+ */
+
+package org.cristalise.dev.canvas;
+
+import org.cristalise.kernel.graph.model.Vertex;
+
+public class ItemDescriptionVertex extends Vertex {
+
+ /**
+ *
+ */
+ public ItemDescriptionVertex() {
+ // TODO Auto-generated constructor stub
+ }
+
+}
diff --git a/src/main/java/org/cristalise/dev/canvas/MemberEdge.java b/src/main/java/org/cristalise/dev/canvas/MemberEdge.java
new file mode 100644
index 0000000..df10594
--- /dev/null
+++ b/src/main/java/org/cristalise/dev/canvas/MemberEdge.java
@@ -0,0 +1,34 @@
+/*
+ * MemberEdge.java
+ *
+ * Copyright (c) 2013, The CRISTAL Consortium. All rights reserved.
+ *
+ * CRISTAL kernel is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 3 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library. If not, see:
+ * http://www.gnu.org/licenses/
+ */
+
+package org.cristalise.dev.canvas;
+
+import org.cristalise.kernel.graph.model.DirectedEdge;
+
+public class MemberEdge extends DirectedEdge {
+
+ /**
+ *
+ */
+ public MemberEdge() {
+ // TODO Auto-generated constructor stub
+ }
+
+}