2.17.2: 2011-06-17

net.sf.basedb.info
Class ExtendedPropertyInfo

java.lang.Object
  extended by 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

Field Summary
private  String column
           
private  String description
           
private  boolean insertable
           
private  int length
           
private  String name
           
private  boolean nullable
           
private static long serialVersionUID
           
private  String title
           
private  boolean updateable
           
 
Constructor Summary
ExtendedPropertyInfo()
          Creates an object with no property set.
 
Method Summary
 String getColumn()
           
 String getDescription()
           
 int getLength()
           
 String getName()
           
 String getTitle()
           
 boolean isInsertable()
           
 boolean isNullable()
           
 boolean isUpdateable()
           
 void setColumn(String column)
           
 void setDescription(String description)
           
 void setInsertable(boolean insertable)
           
 void setLength(int length)
           
 void setName(String name)
           
 void setNullable(boolean nullable)
           
 void setTitle(String title)
           
 void setUpdateable(boolean updateable)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

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
Constructor Detail

ExtendedPropertyInfo

public ExtendedPropertyInfo()
Creates an object with no property set.

Method Detail

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.

2.17.2: 2011-06-17