net.sf.basedb.info
Class ExtendedPropertyInfo
java.lang.Object
net.sf.basedb.info.ExtendedPropertyInfo
- All Implemented Interfaces:
- Serializable, Transferable
public class ExtendedPropertyInfo
- extends Object
- implements Serializable, Transferable
Class to hold information about an extended property in Base
ExtendedProperty
.
- Since:
- 2.5
- Author:
- Martin
- See Also:
- Serialized Form
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
name
private String name
column
private String column
title
private String title
description
private String description
length
private int length
nullable
private boolean nullable
insertable
private boolean insertable
updateable
private boolean updateable
ExtendedPropertyInfo
public ExtendedPropertyInfo()
- Creates an object with no property set.
setName
public void setName(String name)
- Parameters:
name
- The name to set.
getName
public String getName()
- Returns:
- Returns the name.
setColumn
public void setColumn(String column)
- Parameters:
column
- The column to set.
getColumn
public String getColumn()
- Returns:
- Returns the column.
setTitle
public void setTitle(String title)
- Parameters:
title
- The title to set.
getTitle
public String getTitle()
- Returns:
- Returns the title.
setDescription
public void setDescription(String description)
- Parameters:
description
- The description to set.
getDescription
public String getDescription()
- Returns:
- Returns the description.
setLength
public void setLength(int length)
- Parameters:
length
- The length to set.
getLength
public int getLength()
- Returns:
- Returns the length.
setNullable
public void setNullable(boolean nullable)
- Parameters:
nullable
- The nullable to set.
isNullable
public boolean isNullable()
- Returns:
- Returns the nullable.
setInsertable
public void setInsertable(boolean insertable)
- Parameters:
insertable
- The insertable to set.
isInsertable
public boolean isInsertable()
- Returns:
- Returns the insertable.
setUpdateable
public void setUpdateable(boolean updateable)
- Parameters:
updateable
- The updateable to set.
isUpdateable
public boolean isUpdateable()
- Returns:
- Returns the updateable.