Revision 735 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/gvsig.java

View differences:

gvsig.java
3 3
import org.gvsig.fmap.dal.feature.FeatureType;
4 4
import org.gvsig.fmap.mapcontext.layers.FLayer;
5 5

  
6
/**
7
 * Representa al modulo python "gvsig".
8
 * 
9
 * Es el modulo base que nos facilita el acceso a todos
10
 * los componentes de gvSIG.
11
 *
12
 * Puede encontrar un modelo simplificado de objetos mas usadas en
13
 * <a href="../doc-files/simplified-object-model.html">Modelo simplificado de objetos</a>
14
 *
15
 * 
16
 */
6 17
public class gvsig {
7 18

  
8 19
  /**
......
63 74
    * @param layerType The layer type to create (Shape, ...)
64 75
    * 
65 76
    */
66
  public static FLayer creaetLayer(FeatureType schema, String serverType, String layerType, ...) {
77
  public static FLayer creaetLayer(FeatureType schema, String serverType, String layerType, Object... parameters) {
67 78
    return null;
68 79
  }
69 80
  
......
73 84
    * Use as default serverType the "FilesystemExplorer".
74 85
    *
75 86
    */
76
  public static FLayer creaetLayer(FeatureType schema, String layerType, ...) {
87
  public static FLayer creaetLayer(FeatureType schema, String layerType, Object... parameters) {
77 88
    return null;
78 89
  }
79 90

  
......
114 125
     * @return  
115 126
    * 
116 127
    */
117
  public static FLayer loadLayer(String layerType, ...) {
128
  public static FLayer loadLayer(String layerType, Object... parameters) {
118 129
    return null;
119 130
  }
120 131
  
121 132
  
122 133

  
123
  
134
  /*
124 135
  def createShape(definition, filename, geometryType, CRS="CRS:84"):
125 136
  """
126 137
  Return new shape layer 
......
301 312
    color = sp.getDefaultSymbolFillColor()    
302 313

  
303 314
  return color  
304

  
315
*/
305 316
}

Also available in: Unified diff