Package org.yamcs.xtce.util
Interface ParameterReference.ParameterResolvedAction
-
- All Superinterfaces:
NameReference.ResolvedAction
- Enclosing interface:
- ParameterReference
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface ParameterReference.ParameterResolvedAction extends NameReference.ResolvedAction
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default booleanresolved(NameDescription nd)pushes the NameDescription through and returns true if the name reference is resolved and false otherwise false can be returned in case the NameDescription refers to something which is not itself fully resolvedbooleanresolved(Parameter parameter, PathElement[] path)pushes the NameDescription through and returns true if the name reference is resolved and false otherwise false can be returned in case the NameDescription refers to something which is not itself fully resolved if path is not null, it means that the reference has been resolved to a path inside an aggregate parameter
-
-
-
Method Detail
-
resolved
boolean resolved(Parameter parameter, PathElement[] path)
pushes the NameDescription through and returns true if the name reference is resolved and false otherwise false can be returned in case the NameDescription refers to something which is not itself fully resolved if path is not null, it means that the reference has been resolved to a path inside an aggregate parameter
-
resolved
default boolean resolved(NameDescription nd)
Description copied from interface:NameReference.ResolvedActionpushes the NameDescription through and returns true if the name reference is resolved and false otherwise false can be returned in case the NameDescription refers to something which is not itself fully resolved- Specified by:
resolvedin interfaceNameReference.ResolvedAction
-
-