001: /*
002: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
003: *
004: * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * The contents of this file are subject to the terms of either the GNU
007: * General Public License Version 2 only ("GPL") or the Common
008: * Development and Distribution License("CDDL") (collectively, the
009: * "License"). You may not use this file except in compliance with the
010: * License. You can obtain a copy of the License at
011: * http://www.netbeans.org/cddl-gplv2.html
012: * or nbbuild/licenses/CDDL-GPL-2-CP. See the License for the
013: * specific language governing permissions and limitations under the
014: * License. When distributing the software, include this License Header
015: * Notice in each file and include the License file at
016: * nbbuild/licenses/CDDL-GPL-2-CP. Sun designates this
017: * particular file as subject to the "Classpath" exception as provided
018: * by Sun in the GPL Version 2 section of the License file that
019: * accompanied this code. If applicable, add the following below the
020: * License Header, with the fields enclosed by brackets [] replaced by
021: * your own identifying information:
022: * "Portions Copyrighted [year] [name of copyright owner]"
023: *
024: * Contributor(s):
025: *
026: * The Original Software is NetBeans. The Initial Developer of the Original
027: * Software is Sun Microsystems, Inc. Portions Copyright 1997-2007 Sun
028: * Microsystems, Inc. All Rights Reserved.
029: *
030: * If you wish your version of this file to be governed by only the CDDL
031: * or only the GPL Version 2, indicate your decision by adding
032: * "[Contributor] elects to include this software in this distribution
033: * under the [CDDL or GPL Version 2] license." If you do not indicate a
034: * single choice of license, a recipient has the option to distribute
035: * your version of this file under either the CDDL, the GPL Version 2 or
036: * to extend the choice of license to its licensees as provided above.
037: * However, if you add GPL Version 2 code and therefore, elected the GPL
038: * Version 2 license, then the option applies only if the new code is
039: * made subject to such option by the copyright holder.
040: */
041:
042: package com.sun.rave.designtime.impl;
043:
044: import com.sun.rave.designtime.DesignBean;
045: import com.sun.rave.designtime.DesignEvent;
046: import com.sun.rave.designtime.DesignInfo;
047: import com.sun.rave.designtime.DesignProperty;
048: import com.sun.rave.designtime.DisplayAction;
049: import com.sun.rave.designtime.Result;
050:
051: /**
052: * A basic implementation of DesignInfo to subclass and use for convenience.
053: *
054: * @author Joe Nuxoll
055: * @version 1.0
056: * @see DesignInfo
057: */
058: public class BasicDesignInfo implements DesignInfo {
059:
060: protected Class beanClass = null;
061:
062: public BasicDesignInfo(Class beanClass) {
063: this .beanClass = beanClass;
064: }
065:
066: public Class getBeanClass() {
067: return beanClass;
068: }
069:
070: public boolean acceptParent(DesignBean parentBean,
071: DesignBean childBean, Class childClass) {
072: return true;
073: }
074:
075: public boolean acceptChild(DesignBean parentBean,
076: DesignBean childBean, Class childClass) {
077: return true;
078: }
079:
080: public Result beanCreatedSetup(DesignBean designBean) {
081: return null;
082: }
083:
084: public Result beanPastedSetup(DesignBean designBean) {
085: return null;
086: }
087:
088: public Result beanDeletedCleanup(DesignBean designBean) {
089: return null;
090: }
091:
092: public DisplayAction[] getContextItems(DesignBean designBean) {
093: return null;
094: }
095:
096: public boolean acceptLink(DesignBean targetBean,
097: DesignBean sourceBean, Class sourceClass) {
098: return false;
099: }
100:
101: public Result linkBeans(DesignBean targetBean, DesignBean sourceBean) {
102: return null;
103: }
104:
105: public void beanContextActivated(DesignBean designBean) {
106: }
107:
108: public void beanContextDeactivated(DesignBean designBean) {
109: }
110:
111: public void instanceNameChanged(DesignBean designBean,
112: String oldInstanceName) {
113: }
114:
115: public void beanChanged(DesignBean designBean) {
116: }
117:
118: public void propertyChanged(DesignProperty prop, Object oldValue) {
119: }
120:
121: public void eventChanged(DesignEvent event) {
122: }
123: }
|