All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.javabuilders.IAllowedPropertyCombinations Maven / Gradle / Ivy

The newest version!
/**
 * 
 */
package org.javabuilders;


/**
 * Optional interfaces that property handlers can implement to indicate what combinations of
 * properties are mandatory. E.g. the frame size handlers expects "size" or ("height" and "width").
 * Only those two cominations are valid 
 * @author Jacek Furmankiewicz
 */
public interface IAllowedPropertyCombinations {

	/**
	 * Returns set of allowed combinations, e.g.
	 * 
    *
  • size
  • *
  • width,height
  • *
* @return Set of allowed combinations */ PropertyCombination getAllowedCombinations(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy