- Timestamp:
- 02/04/10 21:56:24 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
MetadataBeans/trunk/src/main/java/org/eobjects/metamodel/query/FromItem.java
r886 r887 22 22 import org.eobjects.metamodel.schema.Table; 23 23 24 25 24 /** 26 25 * Represents a FROM item. FROM items can take different forms: … … 120 119 _rightOn = rightOn; 121 120 } 122 123 /** 124 * Creates a single unvalidated from item based on a expression. 125 * Expression based from items are typically NOT datastore-neutral but are126 * availablefor special "hacking" needs.127 * 128 * Expression based from items can only be used for JDBC based datastores since129 * they are translated directly into SQL.121 122 /** 123 * Creates a single unvalidated from item based on a expression. Expression 124 * based from items are typically NOT datastore-neutral but are available 125 * for special "hacking" needs. 126 * 127 * Expression based from items can only be used for JDBC based datastores 128 * since they are translated directly into SQL. 130 129 * 131 130 * @param expression 132 * An expression to use for the from item, for example 133 * "MYTABLE". 131 * An expression to use for the from item, for example "MYTABLE". 134 132 */ 135 133 public FromItem(String expression) { … … 186 184 return _rightOn; 187 185 } 188 186 189 187 public String getExpression() { 190 188 return _expression;
Note: See TracChangeset
for help on using the changeset viewer.
