Searched defs:Statement (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/beans/
H A DStatement.java43 * A <code>Statement</code> object represents a primitive statement
58 public class Statement { class
77 * Creates a new {@link Statement} object
92 public Statement(Object target, String methodName, Object[] arguments) { method in class:Statement
155 * are typically considered {@code Expression}s rather than {@code Statement}s
299 throw new Exception("Statement cannot invoke: " +
/openjdk7/jdk/src/share/classes/java/sql/
H A DStatement.java32 * By default, only one <code>ResultSet</code> object per <code>Statement</code>
36 * different <code>Statement</code> objects. All execution methods in the
37 * <code>Statement</code> interface implicitly close a statment's current
43 public interface Statement extends Wrapper, AutoCloseable { interface in inherits:Wrapper,AutoCloseable
56 * this method is called on a closed <code>Statement</code>, the given
63 * the currently running {@code Statement}
82 * this method is called on a closed <code>Statement</code>, the given
88 * the currently running {@code Statement}
93 * Releases this <code>Statement</code> object's database
100 * Calling the method <code>close</code> on a <code>Statement</cod
[all...]
/openjdk7/jdk/src/share/classes/sun/tools/tree/
H A DStatement.java40 class Statement extends Node { class in inherits:Node
47 Statement(int op, long where) { method in class:Statement
54 public static final Statement empty = new Statement(STAT, 0);
67 public static Statement insertStatement(Statement s1, Statement s2) {
74 Statement body[] = { s1, s2 };
105 CheckContext mctx = new CheckContext(ctx, new Statement(METHOD, 0));
187 public Statement inlin
[all...]

Completed in 1393 milliseconds