11 lines
175 B
Java
11 lines
175 B
Java
|
package com.j2html.codegen.wattsi;
|
||
|
|
||
|
public interface AttributeDefinition {
|
||
|
|
||
|
String name();
|
||
|
|
||
|
boolean appliesTo(ElementDefinition element);
|
||
|
|
||
|
boolean isObsolete();
|
||
|
}
|