Uses of Class
org.jupe.plugin.JupeProject

Packages that use JupeProject
org.jupe.editors.classdiagram.actions Contains actions used in the classdiagram editor using extension points as defined in the plugin.xml file. 
org.jupe.editors.classdiagram.model Provides all classes and interfaces for our internal model of class diagrams. 
org.jupe.editors.classdiagram.model.serializer Provides classes to serialize class diagrams into XML using the XStream and to deserialize them. 
org.jupe.plugin Provides classes and interfaces for general plugin purposes. 
org.jupe.synchronisation Provides classes and interfaces concerning the synchronisation between source code and UML2 model. 
org.jupe.synchronisation.sourcechanges.java Contains classes and interfaces to handle changes in Java source code and propagate them to the UML2 model. 
org.jupe.synchronisation.umlchanges.java   
org.jupe.uml2model Provides convenience classes and interfaces to work with the UML2 model. 
 

Uses of JupeProject in org.jupe.editors.classdiagram.actions
 

Constructors in org.jupe.editors.classdiagram.actions with parameters of type JupeProject
UML2ElementDeleteAction(org.eclipse.ui.IWorkbenchPart part, JupeProject jupeProject)
           
 

Uses of JupeProject in org.jupe.editors.classdiagram.model
 

Methods in org.jupe.editors.classdiagram.model that return JupeProject
 JupeProject ClassDiagram.getJupeProject()
          Determines the corresponding JupeProject either via an open diagram or UML element.
 

Methods in org.jupe.editors.classdiagram.model with parameters of type JupeProject
 void ClassDiagram.setJupeProject(JupeProject project)
          Set the Jupe project this diagram belongs to.
 

Uses of JupeProject in org.jupe.editors.classdiagram.model.serializer
 

Constructors in org.jupe.editors.classdiagram.model.serializer with parameters of type JupeProject
ClassDiagramSerializer(JupeProject jupeProject)
           
ConnectionElementConverter(com.thoughtworks.xstream.alias.ClassMapper arg0, java.lang.String arg1, JupeProject jupeProject)
          Constructor.
ModelElementConverter(com.thoughtworks.xstream.alias.ClassMapper arg0, java.lang.String arg1, JupeProject project)
          Constructor.
NodeModelElementConverter(com.thoughtworks.xstream.alias.ClassMapper arg0, java.lang.String arg1, JupeProject jupeProject)
          Constructor.
 

Uses of JupeProject in org.jupe.plugin
 

Methods in org.jupe.plugin that return JupeProject
 JupeProject JupePlugin.getJupeProject(org.eclipse.core.resources.IProject project)
          Find the Jupe project for a given project.
 JupeProject JupePlugin.getJupeProject(org.eclipse.uml2.uml.Model uml2Model)
          Find the Jupe project for a given UML2 model.
 

Methods in org.jupe.plugin that return types with arguments of type JupeProject
 java.util.Set<JupeProject> JupePlugin.getJupeProjects()
          Get a collection of projects that currently use Jupe.
 

Methods in org.jupe.plugin with parameters of type JupeProject
 void JupePlugin.addJupeProject(JupeProject project)
          Adds a Jupe project.
 boolean JupePlugin.removeJupeProject(JupeProject project)
          Removes a Jupe project.
 

Uses of JupeProject in org.jupe.synchronisation
 

Methods in org.jupe.synchronisation with parameters of type JupeProject
static org.eclipse.uml2.uml.Type Util.findOrCreateType(java.lang.String absoluteName, JupeProject jupeProject)
          Helper method to find a type in the UML2 model, or cause its propagation from the source to the UML2 model (that means, it will be created in the UML2 model).
 

Uses of JupeProject in org.jupe.synchronisation.sourcechanges.java
 

Constructors in org.jupe.synchronisation.sourcechanges.java with parameters of type JupeProject
FileHandler(JupeProject jupeProject)
           
FolderHandler(JupeProject jupeProject)
           
 

Uses of JupeProject in org.jupe.synchronisation.umlchanges.java
 

Constructors in org.jupe.synchronisation.umlchanges.java with parameters of type JupeProject
ClassHandler(JupeProject jupeProject)
           
ClassInterfaceHandler(JupeProject jupeProject)
           
InterfaceHandler(JupeProject jupeProject)
           
JavaContainerHandler(JupeProject jupeProject)
           
ModelHandler(JupeProject jupeProject)
           
PackageHandler(JupeProject jupeProject)
           
 

Uses of JupeProject in org.jupe.uml2model
 

Constructors in org.jupe.uml2model with parameters of type JupeProject
UML2ModelFactory(UML2ModelRoot modelRoot, JupeProject project)
           
UML2ModelRoot(JupeProject project)