Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/Image.java')
-rw-r--r--plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/Image.java33
1 files changed, 33 insertions, 0 deletions
diff --git a/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/Image.java b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/Image.java
new file mode 100644
index 00000000..70ee77b1
--- /dev/null
+++ b/plugins/org.eclipse.uml2.uml/src/org/eclipse/uml2/uml/Image.java
@@ -0,0 +1,33 @@
+/*
+ * Copyright (c) 2005 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM - initial API and implementation
+ *
+ * $Id: Image.java,v 1.1 2005/11/14 22:25:59 khussey Exp $
+ */
+package org.eclipse.uml2.uml;
+
+import org.eclipse.emf.ecore.EObject;
+
+/**
+ * <!-- begin-user-doc -->
+ * A representation of the model object '<em><b>Image</b></em>'.
+ * <!-- end-user-doc -->
+ *
+ * <!-- begin-model-doc -->
+ * The Image class provides the necessary information to display an Image in a diagram. Icons are typically handled through the Image class.
+ * <!-- end-model-doc -->
+ *
+ *
+ * @see org.eclipse.uml2.uml.UMLPackage#getImage()
+ * @model abstract="true"
+ * @generated
+ */
+public interface Image
+ extends EObject {
+} // Image

Back to the top