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

org.snapscript.core.attribute.Attribute Maven / Gradle / Ivy

package org.snapscript.core.attribute;

import java.util.List;

import org.snapscript.core.Handle;
import org.snapscript.core.constraint.Constraint;
import org.snapscript.core.type.Type;

public interface Attribute extends Handle {
   String getName();
   Type getSource(); // declaring type
   List getGenerics();
   Constraint getConstraint();
   int getModifiers();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy