Package net.sourceforge.processdash.hier.ui

Examples of net.sourceforge.processdash.hier.ui.HierarchyNoteFormat


    private static final String TEAM_NOTE_FORMAT_DATA_NAME =
            TEAM_NOTE_DATA_NAME + "_Default_Format";
   
   
    public static HierarchyNoteFormat getNoteFormat(String formatID) {
        HierarchyNoteFormat result = getFormatters().get(formatID);
        if (result == null) {
            logger.severe("Unrecognized note format '" + formatID
                    + "' - using plain text instead");
            result = getFormatters().get(PlainTextNoteFormat.FORMAT_ID);
        }
View Full Code Here


            List formats = ExtensionManager.getExecutableExtensions(
                NOTE_FORMAT_EXTENSION_TAG, null);
            for (Iterator i = formats.iterator(); i.hasNext();) {
                Object o = (Object) i.next();
                if (o instanceof HierarchyNoteFormat) {
                    HierarchyNoteFormat nf = (HierarchyNoteFormat) o;
                    result.put(nf.getID(), nf);
                }
            }
            NOTE_FORMATS = Collections.synchronizedMap(result);
        }
        return NOTE_FORMATS;
View Full Code Here

TOP

Related Classes of net.sourceforge.processdash.hier.ui.HierarchyNoteFormat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.