package org.flexharmony.harmonizer.javadef;
import java.lang.annotation.Annotation;
import org.flexharmony.ASClass;
/**
* Represents a runtime modifable {@link ASClass}.
*
* @author Corey Baswell
*/
public class ASClassImpl implements ASClass
{
public boolean syncAllFields = true;
public ASClassImpl()
{}
public boolean syncAllFields()
{
return syncAllFields;
}
public Class<? extends Annotation> annotationType()
{
return ASClass.class;
}
}
|