blob: ce71a7a13e2b539fc9a5f1ee5264093d80a77401 [file] [log] [blame]
package org.eclipse.jst.server.generic.ui.internal;
/**
*
* @author Gorkem Ercan
*/
public interface GenericServerCompositeDecorator
{
/**
*
* @param composite
*/
public abstract void decorate(GenericServerComposite composite);
/**
* Called if all the fields are valid. This gives subclasses opportunity to
* validate and take necessary actions.
*
* @return
*/
public abstract boolean validate();
}