Ignore:
Timestamp:
02/04/10 21:56:24 (2 years ago)
Author:
kasper
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • MetadataBeans/trunk/src/main/java/org/eobjects/metamodel/query/FromItem.java

    r886 r887  
    2222import org.eobjects.metamodel.schema.Table; 
    2323 
    24  
    2524/** 
    2625 * Represents a FROM item. FROM items can take different forms: 
     
    120119                _rightOn = rightOn; 
    121120        } 
    122          
    123         /** 
    124          * Creates a single unvalidated from item based on a expression. 
    125          * Expression based from items are typically NOT datastore-neutral but are 
    126          * available for special "hacking" needs. 
    127          *  
    128          * Expression based from items can only be used for JDBC based datastores since 
    129          * 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. 
    130129         *  
    131130         * @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". 
    134132         */ 
    135133        public FromItem(String expression) { 
     
    186184                return _rightOn; 
    187185        } 
    188          
     186 
    189187        public String getExpression() { 
    190188                return _expression; 
Note: See TracChangeset for help on using the changeset viewer.