List of usage examples for java.lang Object subclass-usage
From source file org.apache.commons.validator.example.ValidateExample.java
/**
* <p>A simple example of setting up and using the Validator.</p>
*
* This simple example shows all the steps needed to set up and use
* the Validator. Note that in most cases, some kind of framework
* would be wrapped around the Validator, such as is the case with
From source file dip.order.Order.java
/**
* This is the base class for all Order objects.
* <p>
* <b>When referring to an Order subclass, it is best to refer to an object
* as an "Orderable" object rather than an "Order" object.
* </b>
From source file A.java
/** Show various forms of nested classes. * Not all nested classes are "inner classes". */ public class A extends Object { public class B { // member class public class BB {
From source file org.opencds.service.query.DSSQueryAdapter.java
/**
* <p>Adapter to process the query operation of the DSS web service:
*
* <p/>
* <p>Copyright: Copyright (c) 2010</p>
* <p>Company: OpenCDS</p>
From source file org.eclipsecon.e4rover.client.PlayersQueueView.java
public class PlayersQueueView extends Object { /* SWT parent composite for this view */ @Inject Composite parent; // This is being used to set the PLAYER_KEY preference.
From source file Matrix.java
/**
* Contains static definition for matrix math methods.
*
* Here, a matrix is a float[16], and a vector or a point a float[3] (contrary to other part of Opale.Soya, where a point is 3 coords + a CoordSyst).
*
* @author Artiste on the Web
From source file cl.tinet.devops.metrics.gen.bitbucket.model.WebhookSubscription.java
/** * WebhookSubscription */ @javax.annotation.Generated(value = "class io.swagger.codegen.languages.JavaClientCodegen", date = "2016-07-04T23:42:53.141-04:00") public class WebhookSubscription extends Object { @JsonProperty("type")
From source file com.silverpeas.silvercrawler.model.FileFolder.java
/** * Class declaration * @author */ public class FileFolder extends Object implements java.io.Serializable {
From source file org.opencms.cache.CmsLruCache.java
/**
* Implements an LRU (last recently used) cache.<p>
*
* The idea of this cache is to separate the caching policy from the data structure
* where the cached objects are stored. The advantage of doing so is, that the CmsFlexLruCache
* can identify the last-recently-used object in O(1), whereas you would need at least
From source file org.getobjects.jetty.WOJettyRunner.java
/**
* Configures and starts a Jetty HTTP server for executing a WOApplication
* in a Servlet environment.
* <p>
* Sample: Create a main method in your WOApplication subclass like this:
* <pre>