Revision 742 org.gvsig.scripting/trunk/org.gvsig.scripting/org.gvsig.scripting.app/org.gvsig.scripting.app.mainplugin/src/main/resources-plugin/scripting/lib/gvsig/javadocs/scripting/project/Project.java

View differences:

Project.java
8 8
/**
9 9
 * Esta clase representa a un proyecto de gvSIG.
10 10
 *
11
 * Puede encontrar un modelo simplificado de objetos en el que
12
 * se representa el proyecto y las clases relacionadas con el en
13
 * <a href="../doc-files/simplified-object-model.html">Modelo simplificado de objetos</a>
14 11
 *
15 12
 */
16 13
public interface Project extends org.gvsig.app.project.Project {
......
28 25
    public int __len__();
29 26

  
30 27
    /**
31
     * 
28
     *
32 29
     * @param index
33
     * @return 
30
     * @return
34 31
     */
35 32
    public Document __getitem__(int index);
36
    
33

  
37 34
    /**
38
     * 
35
     *
39 36
     * @param name, name of the view to retrieve, is optional
40 37
     *   if name is not passed, return te current view.
41
     * 
42
     * @return 
38
     *
39
     * @return
43 40
     */
44 41
    public ViewDocument getView(String name);
45 42

  
46 43
    /**
47
     * 
44
     *
48 45
     * @param name, optional
49
     * @return 
46
     * @return
50 47
     */
51 48
    public  TableDocument getTable(String name);
52
    
49

  
53 50
    /**
54
     * 
55
     * @return 
51
     *
52
     * @return
56 53
     */
57 54
    public String getProjectionCode();
58
    
55

  
59 56
}

Also available in: Unified diff