congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
AbstractSurfaceType.set
Code IndexAdd Tabnine to your IDE (free)

How to use
set
method
in
net.opengis.gml.AbstractSurfaceType

Best Java code snippets using net.opengis.gml.AbstractSurfaceType.set (Showing top 5 results out of 315)

origin: org.n52.sensorweb/52n-xml-gml-v311

/**
 * Sets ith "_Surface" element
 */
public void setSurfaceArray(int i, net.opengis.gml.AbstractSurfaceType surface)
{
  synchronized (monitor())
  {
    check_orphaned();
    net.opengis.gml.AbstractSurfaceType target = null;
    target = (net.opengis.gml.AbstractSurfaceType)get_store().find_element_user(SURFACE$1, i);
    if (target == null)
    {
      throw new IndexOutOfBoundsException();
    }
    target.set(surface);
  }
}

origin: org.n52.sensorweb/52n-xml-gml-v311

/**
 * Sets the "_Surface" element
 */
public void setSurface(net.opengis.gml.AbstractSurfaceType surface)
{
  synchronized (monitor())
  {
    check_orphaned();
    net.opengis.gml.AbstractSurfaceType target = null;
    target = (net.opengis.gml.AbstractSurfaceType)get_store().find_element_user(SURFACE$1, 0);
    if (target == null)
    {
      target = (net.opengis.gml.AbstractSurfaceType)get_store().add_element_user(SURFACE$0);
    }
    target.set(surface);
  }
}

origin: org.n52.sensorweb/52n-xml-gml-v311

/**
 * Sets the "_Surface" element
 */
public void setSurface(net.opengis.gml.AbstractSurfaceType surface)
{
  synchronized (monitor())
  {
    check_orphaned();
    net.opengis.gml.AbstractSurfaceType target = null;
    target = (net.opengis.gml.AbstractSurfaceType)get_store().find_element_user(SURFACE$1, 0);
    if (target == null)
    {
      target = (net.opengis.gml.AbstractSurfaceType)get_store().add_element_user(SURFACE$0);
    }
    target.set(surface);
  }
}

origin: org.n52.svalbard/svalbard-xmlbeans

addValuesToFeature(xbSamplingSurface, sampFeat);
XmlObject xbGeomety = getEncodedGeometry(sampFeat.getGeometry(), absFeature.getGmlId());
xbSamplingSurface.addNewShape().addNewSurface().set(xbGeomety);
sampFeat.wasEncoded();
return xbSamplingSurfaceDoc;
origin: org.n52.sensorweb.sos/coding-sos-v100

addValuesToFeature(xbSamplingSurface, sampFeat);
XmlObject xbGeomety = getEncodedGeometry(sampFeat.getGeometry(), absFeature.getGmlId());
xbSamplingSurface.addNewShape().addNewSurface().set(xbGeomety);
sampFeat.wasEncoded();
return xbSamplingSurfaceDoc;
net.opengis.gmlAbstractSurfaceTypeset

Popular methods of AbstractSurfaceType

  • <init>

Popular in Java

  • Start an intent from android
  • findViewById (Activity)
  • setRequestProperty (URLConnection)
  • getSharedPreferences (Context)
  • GridBagLayout (java.awt)
    The GridBagLayout class is a flexible layout manager that aligns components vertically and horizonta
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • PriorityQueue (java.util)
    A PriorityQueue holds elements on a priority heap, which orders the elements according to their natu
  • StringUtils (org.apache.commons.lang)
    Operations on java.lang.String that arenull safe. * IsEmpty/IsBlank - checks if a String contains
  • SAXParseException (org.xml.sax)
    Encapsulate an XML parse error or warning.> This module, both source code and documentation, is in t
  • Top plugins for WebStorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now