ch.sahits.model.java
Interface IBeanField


public interface IBeanField

This interface defines a field of a bean consisting of a type and a name.

Since:
0.9.5
Author:
Andi Hotz

Method Summary
 java.lang.String getName()
          Retrieve the name of this field
 java.lang.Class getType()
          Retrieve the type of this field
 void setName(java.lang.String name)
          Set the name of the field
 void setType(java.lang.Class type)
          Set the type of the field
 

Method Detail

getType

java.lang.Class getType()
Retrieve the type of this field

Returns:
field type

setType

void setType(java.lang.Class type)
Set the type of the field

Parameters:
type - of the field

getName

java.lang.String getName()
Retrieve the name of this field

Returns:
name of the field

setName

void setName(java.lang.String name)
Set the name of the field

Parameters:
name - of the field