1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 package org.openoffice.netbeans.modules.office.loader;
25 
26 import org.openide.actions.*;
27 import org.openide.cookies.*;
28 import org.openide.filesystems.FileObject;
29 import org.openide.loaders.*;
30 import org.openide.nodes.*;
31 import org.openide.util.HelpCtx;
32 
33 import org.openoffice.netbeans.modules.office.actions.*;
34 
35 /** Represents a Parcel object in the Repository.
36  *
37  * @author tomaso
38  */
39 public class ParcelDataObject extends MultiDataObject {
40 
ParcelDataObject(FileObject pf, ParcelDataLoader loader)41     public ParcelDataObject(FileObject pf, ParcelDataLoader loader) throws DataObjectExistsException {
42         super(pf, loader);
43         init();
44     }
45 
init()46     private void init() {
47         CookieSet cookies = getCookieSet();
48         cookies.add(new ParcelSupport(getPrimaryFile()));
49     }
50 
getHelpCtx()51     public HelpCtx getHelpCtx() {
52         return HelpCtx.DEFAULT_HELP;
53         // If you add context help, change to:
54         // return new HelpCtx(ParcelDataObject.class);
55     }
56 
createNodeDelegate()57     protected Node createNodeDelegate() {
58         return new ParcelDataNode(this);
59     }
60 
61     /* If you made an Editor Support you will want to add these methods:
62 
63     final void addSaveCookie(SaveCookie save) {
64         getCookieSet().add(save);
65     }
66 
67     final void removeSaveCookie(SaveCookie save) {
68         getCookieSet().remove(save);
69     }
70 
71      */
72 
73 }
74