/** * @param modelElement the UML element * @param args a set of arguments that may influence the generated notation * @return a string which represents the path */ static String generatePath(Object modelElement, Map args) { if (NotationProvider.isValue("pathVisible", args)) { return generatePath(modelElement); } else { return ""; } }
/** * @param modelElement the UML element * @param args a set of arguments that may influence the generated notation * @return a string which represents the visibility * @deprecated for 0.27.3 by tfmorris. Use {@link #generateVisibility(Object)} or {@link * #generateVisibility(Object, org.argouml.notation.NotationSettings)} */ @Deprecated static String generateVisibility(Object modelElement, Map args) { String s = ""; if (NotationProvider.isValue("visibilityVisible", args)) { s = NotationUtilityJava.generateVisibility(modelElement); } return s; }