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

How to use
AbstractSurfaceType
in
net.opengis.gml

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

origin: citygml4j/citygml4j

/**
 * Create an instance of {@link AbstractSurfaceType }
 * 
 */
public AbstractSurfaceType createAbstractSurfaceType() {
  return new AbstractSurfaceType();
}
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.gmlAbstractSurfaceType

Javadoc

A representation of the model object 'Abstract Surface Type'. An abstraction of a surface to support the different levels of complexity. A surface is always a continuous region of a plane.

Most used methods

  • set
  • <init>

Popular in Java

  • Reactive rest calls using spring rest template
  • getSystemService (Context)
  • getSupportFragmentManager (FragmentActivity)
  • addToBackStack (FragmentTransaction)
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • Socket (java.net)
    Provides a client-side TCP socket.
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • MessageFormat (java.text)
    Produces concatenated messages in language-neutral way. New code should probably use java.util.Forma
  • AtomicInteger (java.util.concurrent.atomic)
    An int value that may be updated atomically. See the java.util.concurrent.atomic package specificati
  • Logger (org.slf4j)
    The org.slf4j.Logger interface is the main user entry point of SLF4J API. It is expected that loggin
  • 14 Best Plugins for Eclipse
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