blob: 9ee2f07cb9aa2aca141f4c65468464e5949845c5 [file] [log] [blame]
package org.eclipse.ease.helpgenerator.testproject.valid;
import org.eclipse.ease.modules.WrapToScript;
public interface InterfaceA {
/** Constant defined in InterfaceA. */
@WrapToScript
static int INTERFACE_CONSTANT = 22;
/**
* Method documented in InterfaceA only.
*/
void interfaceAMethod();
}