X_CM_WebProject.java
| Index Score | ||
|---|---|---|
![]() |
![]() |
org.compiere.model |
![]() |
![]() |
Compiere |
View: Reasons, Metrics, Source Code
These are the metrics that contribute to the Enerjy Score for this file, ranked by impact. So the metrics listed at the top influence the score to a greater extent that the metrics listed at the bottom.
/******************************************************************************
* Product: Compiere ERP & CRM Smart Business Solution *
* Copyright (C) 1999-2007 ComPiere, Inc. All Rights Reserved. *
* This program is free software, you can redistribute it and/or modify it *
* under the terms version 2 of the GNU General Public License as published *
* by the Free Software Foundation. This program is distributed in the hope *
* that it will be useful, but WITHOUT ANY WARRANTY, without even the implied *
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
* See the GNU General Public License for more details. *
* You should have received a copy of the GNU General Public License along *
* with this program, if not, write to the Free Software Foundation, Inc., *
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. *
* For the text or an alternative of this public license, you may reach us *
* ComPiere, Inc., 3600 Bridge Parkway #102, Redwood City, CA 94065, USA *
* or via info@compiere.org or http://www.compiere.org/license.html *
*****************************************************************************/
package org.compiere.model;
/** Generated Model - DO NOT CHANGE */
import java.sql.*;
import java.math.*;
import org.compiere.framework.*;
import org.compiere.util.*;
/** Generated Model for CM_WebProject
* @author Jorg Janke (generated)
* @version Release 3.1.0 - $Id$ */
public class X_CM_WebProject extends PO
{
/** Standard Constructor
@param ctx context
@param CM_WebProject_ID id
@param trxName transaction
*/
public X_CM_WebProject (Ctx ctx, int CM_WebProject_ID, String trxName)
{
super (ctx, CM_WebProject_ID, trxName);
/** if (CM_WebProject_ID == 0)
{
setAD_TreeCMC_ID (0);
setAD_TreeCMM_ID (0);
setAD_TreeCMS_ID (0);
setAD_TreeCMT_ID (0);
setCM_WebProject_ID (0);
setMeta_Author (null); // @AD_User_Name@
setMeta_Content (null); // 'text/html;
charset=UTF-8'
setMeta_Copyright (null); // @AD_Client_Name@
setMeta_Publisher (null); // @AD_Client_Name@
setMeta_RobotsTag (null); // 'INDEX,FOLLOW'
setName (null);
}
*/
}
/** Load Constructor
@param ctx context
@param rs result set
@param trxName transaction
*/
public X_CM_WebProject (Ctx ctx, ResultSet rs, String trxName)
{
super (ctx, rs, trxName);
}
/** Serial Version No */
static final long serialVersionUID = 27495261242789L;
/** Last Updated Timestamp 2008-06-10 15:12:06.0 */
public static final long updatedMS = 1213135926000L;
/** AD_Table_ID=853 */
public static final int Table_ID=853;
/** TableName=CM_WebProject */
public static final String Table_Name="CM_WebProject";
protected static KeyNamePair Model = new KeyNamePair(Table_ID,"CM_WebProject");
protected BigDecimal accessLevel = new BigDecimal(6);
/** AccessLevel
@return 6 - System - Client
*/
protected int get_AccessLevel()
{
return accessLevel.intValue();
}
/** Load Meta Data
@param ctx context
@return PO Info
*/
protected POInfo initPO (Ctx ctx)
{
POInfo poi = POInfo.getPOInfo (ctx, Table_ID);
return poi;
}
/** Info
@return info
*/
public String toString()
{
StringBuffer sb = new StringBuffer ("X_CM_WebProject[").append(get_ID()).append("]");
return sb.toString();
}
/** AD_TreeCMC_ID AD_Reference_ID=184 */
public static final int AD_TREECMC_ID_AD_Reference_ID=184;
/** Set Container Tree.
@param AD_TreeCMC_ID Container Tree */
public void setAD_TreeCMC_ID (int AD_TreeCMC_ID)
{
if (AD_TreeCMC_ID < 1) throw new IllegalArgumentException ("AD_TreeCMC_ID is mandatory.");
set_ValueNoCheck ("AD_TreeCMC_ID", new Integer(AD_TreeCMC_ID));
}
/** Get Container Tree.
@return Container Tree */
public int getAD_TreeCMC_ID()
{
Integer ii = (Integer)get_Value("AD_TreeCMC_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** AD_TreeCMM_ID AD_Reference_ID=184 */
public static final int AD_TREECMM_ID_AD_Reference_ID=184;
/** Set Media Tree.
@param AD_TreeCMM_ID Media Tree */
public void setAD_TreeCMM_ID (int AD_TreeCMM_ID)
{
if (AD_TreeCMM_ID < 1) throw new IllegalArgumentException ("AD_TreeCMM_ID is mandatory.");
set_ValueNoCheck ("AD_TreeCMM_ID", new Integer(AD_TreeCMM_ID));
}
/** Get Media Tree.
@return Media Tree */
public int getAD_TreeCMM_ID()
{
Integer ii = (Integer)get_Value("AD_TreeCMM_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** AD_TreeCMS_ID AD_Reference_ID=184 */
public static final int AD_TREECMS_ID_AD_Reference_ID=184;
/** Set Stage Tree.
@param AD_TreeCMS_ID Stage Tree */
public void setAD_TreeCMS_ID (int AD_TreeCMS_ID)
{
if (AD_TreeCMS_ID < 1) throw new IllegalArgumentException ("AD_TreeCMS_ID is mandatory.");
set_ValueNoCheck ("AD_TreeCMS_ID", new Integer(AD_TreeCMS_ID));
}
/** Get Stage Tree.
@return Stage Tree */
public int getAD_TreeCMS_ID()
{
Integer ii = (Integer)get_Value("AD_TreeCMS_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** AD_TreeCMT_ID AD_Reference_ID=184 */
public static final int AD_TREECMT_ID_AD_Reference_ID=184;
/** Set Template Tree.
@param AD_TreeCMT_ID Template Tree */
public void setAD_TreeCMT_ID (int AD_TreeCMT_ID)
{
if (AD_TreeCMT_ID < 1) throw new IllegalArgumentException ("AD_TreeCMT_ID is mandatory.");
set_ValueNoCheck ("AD_TreeCMT_ID", new Integer(AD_TreeCMT_ID));
}
/** Get Template Tree.
@return Template Tree */
public int getAD_TreeCMT_ID()
{
Integer ii = (Integer)get_Value("AD_TreeCMT_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Web Project.
@param CM_WebProject_ID A web project is the main data container for Containers, URLs, Ads, and Media etc. */
public void setCM_WebProject_ID (int CM_WebProject_ID)
{
if (CM_WebProject_ID < 1) throw new IllegalArgumentException ("CM_WebProject_ID is mandatory.");
set_ValueNoCheck ("CM_WebProject_ID", new Integer(CM_WebProject_ID));
}
/** Get Web Project.
@return A web project is the main data container for Containers, URLs, Ads, and Media etc. */
public int getCM_WebProject_ID()
{
Integer ii = (Integer)get_Value("CM_WebProject_ID");
if (ii == null) return 0;
return ii.intValue();
}
/** Set Description.
@param Description Optional short description of the record */
public void setDescription (String Description)
{
int length = p_info.getFieldLength("Description");
if (Description != null && Description.length() > length)
{
log.warning("Length > " + length + " - truncated");
Description = Description.substring(0,length);
}
set_Value ("Description", Description);
}
/** Get Description.
@return Optional short description of the record */
public String getDescription()
{
return (String)get_Value("Description");
}
/** Set Comment.
@param Help Comment, Help or Hint */
public void setHelp (String Help)
{
int length = p_info.getFieldLength("Help");
if (Help != null && Help.length() > length)
{
log.warning("Length > " + length + " - truncated");
Help = Help.substring(0,length);
}
set_Value ("Help", Help);
}
/** Get Comment.
@return Comment, Help or Hint */
public String getHelp()
{
return (String)get_Value("Help");
}
/** Set Meta Author.
@param Meta_Author Author of the content */
public void setMeta_Author (String Meta_Author)
{
if (Meta_Author == null) throw new IllegalArgumentException ("Meta_Author is mandatory.");
int length = p_info.getFieldLength("Meta_Author");
if (Meta_Author.length() > length)
{
log.warning("Length > " + length + " - truncated");
Meta_Author = Meta_Author.substring(0,length);
}
set_Value ("Meta_Author", Meta_Author);
}
/** Get Meta Author.
@return Author of the content */
public String getMeta_Author()
{
return (String)get_Value("Meta_Author");
}
/** Set Meta Content Type.
@param Meta_Content Defines the type of content i.e. "text/html;
charset=UTF-8" */
public void setMeta_Content (String Meta_Content)
{
if (Meta_Content == null) throw new IllegalArgumentException ("Meta_Content is mandatory.");
int length = p_info.getFieldLength("Meta_Content");
if (Meta_Content.length() > length)
{
log.warning("Length > " + length + " - truncated");
Meta_Content = Meta_Content.substring(0,length);
}
set_Value ("Meta_Content", Meta_Content);
}
/** Get Meta Content Type.
@return Defines the type of content i.e. "text/html;
charset=UTF-8" */
public String getMeta_Content()
{
return (String)get_Value("Meta_Content");
}
/** Set Meta Copyright.
@param Meta_Copyright Contains Copyright information for the content */
public void setMeta_Copyright (String Meta_Copyright)
{
if (Meta_Copyright == null) throw new IllegalArgumentException ("Meta_Copyright is mandatory.");
int length = p_info.getFieldLength("Meta_Copyright");
if (Meta_Copyright.length() > length)
{
log.warning("Length > " + length + " - truncated");
Meta_Copyright = Meta_Copyright.substring(0,length);
}
set_Value ("Meta_Copyright", Meta_Copyright);
}
/** Get Meta Copyright.
@return Contains Copyright information for the content */
public String getMeta_Copyright()
{
return (String)get_Value("Meta_Copyright");
}
/** Set Meta Publisher.
@param Meta_Publisher Meta Publisher defines the publisher of the content */
public void setMeta_Publisher (String Meta_Publisher)
{
if (Meta_Publisher == null) throw new IllegalArgumentException ("Meta_Publisher is mandatory.");
int length = p_info.getFieldLength("Meta_Publisher");
if (Meta_Publisher.length() > length)
{
log.warning("Length > " + length + " - truncated");
Meta_Publisher = Meta_Publisher.substring(0,length);
}
set_Value ("Meta_Publisher", Meta_Publisher);
}
/** Get Meta Publisher.
@return Meta Publisher defines the publisher of the content */
public String getMeta_Publisher()
{
return (String)get_Value("Meta_Publisher");
}
/** Set Meta RobotsTag.
@param Meta_RobotsTag RobotsTag defines how search robots should handle this content */
public void setMeta_RobotsTag (String Meta_RobotsTag)
{
if (Meta_RobotsTag == null) throw new IllegalArgumentException ("Meta_RobotsTag is mandatory.");
int length = p_info.getFieldLength("Meta_RobotsTag");
if (Meta_RobotsTag.length() > length)
{
log.warning("Length > " + length + " - truncated");
Meta_RobotsTag = Meta_RobotsTag.substring(0,length);
}
set_Value ("Meta_RobotsTag", Meta_RobotsTag);
}
/** Get Meta RobotsTag.
@return RobotsTag defines how search robots should handle this content */
public String getMeta_RobotsTag()
{
return (String)get_Value("Meta_RobotsTag");
}
/** Set Name.
@param Name Alphanumeric identifier of the entity */
public void setName (String Name)
{
if (Name == null) throw new IllegalArgumentException ("Name is mandatory.");
int length = p_info.getFieldLength("Name");
if (Name.length() > length)
{
log.warning("Length > " + length + " - truncated");
Name = Name.substring(0,length);
}
set_Value ("Name", Name);
}
/** Get Name.
@return Alphanumeric identifier of the entity */
public String getName()
{
return (String)get_Value("Name");
}
/** Get Record ID/ColumnName
@return ID/ColumnName pair */
public KeyNamePair getKeyNamePair()
{
return new KeyNamePair(get_ID(), getName());
}
}
The table below shows all metrics for X_CM_WebProject.java.




