Class WarningAppender
- java.lang.Object
-
- com.opencloud.slee.upgrade.transformation.engine.WarningAppender
-
public abstract class WarningAppender extends java.lang.ObjectAssists in the addition ofTransformationWarningobjects, usually to a list of warnings.
-
-
Constructor Summary
Constructors Constructor Description WarningAppender()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract voidappend(TransformationWarning warning)Appends the given warning.abstract voidappend(TransformationWarning.Type type, java.lang.String message)Constructs and appends a warning based on the given arguments.abstract voidappendFrom(ResultAndWarnings<?> resultAndWarnings)Appends all warnings from the givenResultAndWarningsobjectstatic WarningAppenderfromMutableList(java.util.List<TransformationWarning> warningList)
-
-
-
Method Detail
-
appendFrom
public abstract void appendFrom(@Nonnull ResultAndWarnings<?> resultAndWarnings)Appends all warnings from the givenResultAndWarningsobject
-
append
public abstract void append(@Nonnull TransformationWarning.Type type, @Nonnull java.lang.String message)Constructs and appends a warning based on the given arguments.
-
append
public abstract void append(@Nonnull TransformationWarning warning)Appends the given warning.
-
fromMutableList
@Nonnull public static WarningAppender fromMutableList(@Nonnull java.util.List<TransformationWarning> warningList)
-
-