Package hirondelle.fish.translate.basetext

Examples of hirondelle.fish.translate.basetext.BaseTextDAO


  
   <P>As well, some operations require the parent to be placed in request scope.
  */
  private BaseText getParent() {
    if( fParent == null){
      BaseTextDAO dao = new BaseTextDAO();
      //this req param needs to always be present
      Id baseTextId = getIdParam(BASE_TEXT_ID);
      fLogger.fine("Fetching BaseText for " + Util.quote(baseTextId));
      try {
        fParent = dao.fetch(baseTextId);
      }
      catch(DAOException ex){
        fLogger.severe("Cannot fetch BaseText using id " + Util.quote(baseTextId));       
      }
    }
View Full Code Here

TOP

Related Classes of hirondelle.fish.translate.basetext.BaseTextDAO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.