Revision 42088 trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.app/org.gvsig.app.mainplugin/src/main/java/org/gvsig/app/project/documents/Document.java

View differences:

Document.java
62 62
	public String getOwner();
63 63

  
64 64
	public String getTypeName();
65
	
65

  
66 66
	/**
67 67
	 * Establece la fecha de creaci?n del elemento.
68 68
	 *
......
94 94
	public Project getProject();
95 95

  
96 96
	public void setProject(Project project);
97
	
97

  
98 98
	/**
99 99
	 * Locks this project element protecting it from deleting from the project.
100 100
	 */
......
140 140
	public void afterAdd();
141 141

  
142 142
	public WindowLayout getWindowLayout();
143
	
143

  
144 144
	public void setWindowLayout(WindowLayout layout) ;
145
	
145

  
146 146
	public IWindow getPropertiesWindow();
147
	
147

  
148 148
        /**
149 149
         * Return the main window associated to this document.
150 150
         * Is a tutility method, is equivalent to:
151 151
         * <code>this.getFactory().getMainWindow(doc)</code>
152
         * 
152
         *
153 153
         * @return the IWindow associated to this document
154 154
         */
155 155
	public IWindow getMainWindow();
156
        
156

  
157 157
        /**
158 158
         * Return the main JComponent associated to this document.
159 159
         * Is a tutility method, is equivalent to:
160 160
         * <code>this.getFactory().getMainComponent(doc)</code>
161
         * 
161
         *
162 162
         * @return the JComponent associated to this document
163 163
         */
164 164
        public JComponent getMainComponent();
165
	
166
	
165

  
166
    public boolean isTemporary();
167

  
168
    public boolean isAvailable();
169

  
167 170
}

Also available in: Unified diff