Code Search for Developers
 
 
  

ParameterIf.java from Negest at Krugle


Show ParameterIf.java syntax highlighted

package tk.sabreWulf.negest.entity.reports;

import java.util.Set;

import javax.persistence.OneToMany;


/**
 * The ParameterIf interfaces exposes the persistence data.
 *
 * @author  Jose Manuel Molina Pascual  Sabre Wulf
 * @version $Revision: 1.4 $, $Date: 2005/06/29 20:56:26 $
 */
public interface ParameterIf {

    /**
     * Return the primary key.
     *
     * @return java.lang.Long he primary key.
     */
    java.lang.Long getPrimaryKey();

    /**
     * Set the primary key.
     *
     * @param pk return java.lang.Long with the primary key.
     */
    void setPrimaryKey(java.lang.Long pk);


   /**
    * Returns the value of the <code>id</code> property.
    *
    * @return the value of the <code>id</code> property
    */
   java.lang.Long getId();

   /**
    * Sets the value of the <code>id</code> property.
    *
    * @param id the value for the <code>id</code> property
    */
   void setId(java.lang.Long id);

   /**
    * Returns the value of the <code>name</code> property.
    *
    * @return the value of the <code>name</code> property
    */
   java.lang.String getName();

   /**
    * Sets the value of the <code>name</code> property.
    *
    * @param name the value for the <code>name</code> property
    */
   void setName(java.lang.String name);

   /**
    * Returns the value of the <code>description</code> property.
    *
    * @return the value of the <code>description</code> property
    */
   java.lang.String getDescription();

   /**
    * Sets the value of the <code>description</code> property.
    *
    * @param description the value for the <code>description</code> property
    */
   void setDescription(java.lang.String description);

   /**
    * Returns the value of the <code>maxvalue</code> property.
    *
    * @return the value of the <code>maxvalue</code> property
    */
   java.lang.Float getMaxvalue();

   /**
    * Sets the value of the <code>maxvalue</code> property.
    *
    * @param maxvalue the value for the <code>maxvalue</code> property
    */
   void setMaxvalue(java.lang.Float maxvalue);

   /**
    * Returns the value of the <code>minvalue</code> property.
    *
    * @return the value of the <code>minvalue</code> property
    */
   java.lang.Float getMinvalue();

   /**
    * Sets the value of the <code>minvalue</code> property.
    *
    * @param minvalue the value for the <code>minvalue</code> property
    */
   void setMinvalue(java.lang.Float minvalue);

   /**
    * Returns the value of the <code>averagevalue</code> property.
    *
    * @return the value of the <code>averagevalue</code> property
    */
   java.lang.Float getAveragevalue();

   /**
    * Sets the value of the <code>averagevalue</code> property.
    *
    * @param averagevalue the value for the <code>averagevalue</code> property
    */
   void setAveragevalue(java.lang.Float averagevalue);

   /**
    * Returns the value of the <code>mode</code> property.
    *
    * @return the value of the <code>mode</code> property
    */
   java.lang.Float getMode();

   /**
    * Sets the value of the <code>mode</code> property.
    *
    * @param mode the value for the <code>mode</code> property
    */
   void setMode(java.lang.Float mode);

   /**
    * Returns the value of the <code>avgdeviation</code> property.
    *
    * @return the value of the <code>avgdeviation</code> property
    */
   java.lang.Float getAvgdeviation();

   /**
    * Sets the value of the <code>avgdeviation</code> property.
    *
    * @param avgdeviation the value for the <code>avgdeviation</code> property
    */
   void setAvgdeviation(java.lang.Float avgdeviation);

   /**
    * Returns the value of the <code>isnumeric</code> property.
    *
    * @return the value of the <code>isnumeric</code> property
    */
   java.lang.Byte getIsnumeric();

   /**
    * Sets the value of the <code>isnumeric</code> property.
    *
    * @param isnumeric the value for the <code>isnumeric</code> property
    */
   void setIsnumeric(java.lang.Byte isnumeric);
   
   public Set<ReportParameterValueEJB> getReportParameterValues();

   public void setReportParameterValues(Set<ReportParameterValueEJB> reportParameterValues);

}




See more files for this project here

Negest

This project aims to offer the SOHO integrated platform to track their customers, the events generated by/with them, the orders and billing, warehouses, customer locations and equipment. Its a CMP/ERP, with its focus on water treatment business, for this

Project homepage: http://sourceforge.net/projects/negest
Programming language(s): Java,XML
License: other

  ParameterIf.java
  ParameterOptionsIf.java
  ReportInstanceIf.java
  ReportParameterValueIf.java
  ReportTypeIf.java
  ReportTypeVersionIf.java