Class MvcFieldMeta

java.lang.Object
com.jk.web.mvc.MvcFieldMeta

public class MvcFieldMeta extends Object
This class represents metadata for a field in the Model-View-Controller (MVC) architecture.
Version:
1.0
Author:
Dr. Jalal H. Kiswani
  • Constructor Details

    • MvcFieldMeta

      public MvcFieldMeta()
  • Method Details

    • setName

      public void setName(String name)
      This method sets the name of the field to the provided value.
      Parameters:
      name - Specifies new name of the field.
    • getName

      public String getName()
      This method retrieves the name of the field.
      Returns:
      the name of the field.
    • setTypeName

      public void setTypeName(String typeName)
      This method sets the type name of the field to the provided value.
      Parameters:
      typeName - Specifies the new type name of the field.
    • getTypeName

      public String getTypeName()
      This method retrieves the type name of the field.
      Returns:
      the type name of the field.