Package com.jk.web.mvc
Class MvcFieldMeta
java.lang.Object
com.jk.web.mvc.MvcFieldMeta
This class represents metadata for a field in the Model-View-Controller (MVC)
architecture.
- Version:
- 1.0
- Author:
- Dr. Jalal H. Kiswani
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetName()
This method retrieves the name of the field.This method retrieves the type name of the field.void
This method sets the name of the field to the provided value.void
setTypeName
(String typeName) This method sets the type name of the field to the provided value.
-
Constructor Details
-
MvcFieldMeta
public MvcFieldMeta()
-
-
Method Details
-
setName
This method sets the name of the field to the provided value.- Parameters:
name
- Specifies new name of the field.
-
getName
This method retrieves the name of the field.- Returns:
- the name of the field.
-
setTypeName
This method sets the type name of the field to the provided value.- Parameters:
typeName
- Specifies the new type name of the field.
-
getTypeName
This method retrieves the type name of the field.- Returns:
- the type name of the field.
-