Class PropertyVerificator<Input>


  • public class PropertyVerificator<Input>
    extends Object

    Property verificator which checks if all containers of a class are initialized and filled and all fields are not only initialized but also set

    You can use the PropertyVerificator with a spring configuration file like:

       <bean id="propertyVerificator" class="science.aist.gtf.verification.syntactic.PropertyVerificator"/>
     

    or with own defined PropertyRestrictor like:

       
          <bean id="propertyVerificator" class="science.aist.gtf.verification.syntactic.PropertyVerificator">
            <property name="restrictor">
                <bean class="science.aist.gtf.verification.syntactic.PropertyRestrictor">
                    <!-- see {@link PropertyRestrictor} class description  -->
                 </bean>
             </property>
         </bean>
         
     
    Since:
    1.0
    Author:
    Andreas Pointner, Christoph Praschl
    • Constructor Detail

      • PropertyVerificator

        public PropertyVerificator()