alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 *                 Sun Public License Notice
 * 
 * The contents of this file are subject to the Sun Public License
 * Version 1.0 (the "License"). You may not use this file except in
 * compliance with the License. A copy of the License is available at
 * http://www.sun.com/
 * 
 * The Original Code is NetBeans. The Initial Developer of the Original
 * Code is Sun Microsystems, Inc. Portions Copyright 1997-2000 Sun
 * Microsystems, Inc. All Rights Reserved.
 */


package org.netbeans.modules.group;


import org.openide.actions.*;
import org.openide.filesystems.*;
import org.openide.loaders.*;
import org.openide.util.actions.SystemAction;
import org.openide.util.NbBundle;


/** 
 * Loader for GroupShadow data object.
 *
 * @author Jaroslav Tulach
 */
public class GroupShadowLoader extends DataLoader {

    /** generated serial version UID */
    static final long serialVersionUID =-2768192459953761627L;

    /**
     * extension of files representing groups.
     * This extension is initially the only item in the list of recognized
     * extensions.
     *
     * @see  #setExtensions
     */
    public static final String GS_EXTENSION = "group"; // NOI18N
    
    /**
     * list of extensions of group shadow files
     *
     * @see  #setExtensions
     */
    private ExtensionList extensions;

    
    /** Creates a new loader. */
    public GroupShadowLoader() {
        super("org.netbeans.modules.group.GroupShadow"); // NOI18N
        
        extensions = new ExtensionList();
        extensions.addExtension(GS_EXTENSION);
    }
    
    
    /** */
    protected String defaultDisplayName() {
        return NbBundle.getMessage(GroupShadowLoader.class,
                                   "PROP_GroupShadowName");             //NOI18N
    }
    
    /** */
    protected SystemAction[] defaultActions() {
        return new SystemAction[] {
            SystemAction.get(OpenLocalExplorerAction.class),
            SystemAction.get(FileSystemAction.class),
            null,
            SystemAction.get(CutAction.class),
            SystemAction.get(CopyAction.class),
            SystemAction.get(PasteAction.class),
            null,
            SystemAction.get(DeleteAction.class),
            SystemAction.get(RenameAction.class),
            null,
            SystemAction.get(SaveAsTemplateAction.class),
            null,
            SystemAction.get(ToolsAction.class),
            SystemAction.get(PropertiesAction.class)
        };
    }

    
    /**
     * @return  {@link GroupShadow} for the given FileObject;
     *          or null if the FileObject
     *          does not have the expected extension
     * @see  #GS_EXTENSION
     */
    protected DataObject handleFindDataObject(
            FileObject fo,
            DataLoader.RecognizedFiles recognized) throws java.io.IOException {
        if (getExtensions().isRegistered(fo)) {
            return new GroupShadow(fo, this);
        }
        return null;
    }

    /**
     * Returns a list of extensions of group shadow files.
     * Files having an extension among the specified extensions are
     * recognized as files representing group shadow files.
     *
     * @return  list of extensions of group shadow files
     */
    public ExtensionList getExtensions() {
        return extensions;
    }

    /**
     * Sets a list of extensions of group shadow files.
     * Files having an extension among the specified extensions will then be
     * recognized as files representing group shadow files.
     *
     * @param  extensions  new list of extensions
     */
    public void setExtensions(ExtensionList extensions) {
        this.extensions = extensions;
    }
}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.