Package org.compiere.model

Examples of org.compiere.model.X_AD_Column


   * Checks the given column.
   * @param columnId
   * @return true if the column is a product category column
   */
  private boolean isProductCategoryField(int columnId) {
    X_AD_Column col = new X_AD_Column(Env.getCtx(), columnId, null);
    if (col.get_ID() == 0) {
      return false; // column not found...
    }
    return MProduct.COLUMNNAME_M_Product_Category_ID.equals(col.getColumnName());
  }
View Full Code Here

TOP

Related Classes of org.compiere.model.X_AD_Column

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.