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: package org.netbeans.modules.visualweb.web.ui.dt.component;
042:
043: import com.sun.rave.designtime.DesignBean;
044: import com.sun.rave.designtime.DesignProperty;
045: import com.sun.rave.designtime.Result;
046: import com.sun.rave.web.ui.component.Message;
047: import org.netbeans.modules.visualweb.web.ui.dt.AbstractDesignInfo;
048: import javax.faces.component.EditableValueHolder;
049:
050: /**
051: * DesignInfo for {@link org.netbeans.modules.visualweb.web.ui.dt.component.Message} component.
052: *
053: * @author gjmurphy
054: */
055: public class MessageDesignInfo extends AbstractDesignInfo {
056:
057: /** Creates a new instance of MessageDesignInfo. */
058: public MessageDesignInfo() {
059: super (Message.class);
060: }
061:
062: public Result beanCreatedSetup(DesignBean bean) {
063: bean.getProperty("showSummary").setValue(Boolean.TRUE);
064: bean.getProperty("showDetail").setValue(Boolean.FALSE);
065: return Result.SUCCESS;
066: }
067:
068: /**
069: * Returns true if source bean implements EditaleValueHolder.
070: *
071: * @param targetBean Target <code>Label</code> bean
072: * @param sourceBean Source bean (or <code>null</code>)
073: * @param sourceClass Class of source object being dropped
074: */
075: public boolean acceptLink(DesignBean targetBean,
076: DesignBean sourceBean, Class sourceClass) {
077: return (super .acceptLink(targetBean, sourceBean, sourceClass) || EditableValueHolder.class
078: .isAssignableFrom(sourceClass));
079: }
080:
081: /** If a component that implements <code>EditableValueHolder</code> is
082: * linked to us, update our <code>for</code> property such that it contains
083: * the component's id. Links from all other types of components are treated
084: * as no-ops.
085: *
086: * @param targetBean Target <code>Label</code> bean
087: * @param sourceBean Source bean (or <code>null</code>)
088: */
089: public Result linkBeans(DesignBean targetBean, DesignBean sourceBean) {
090:
091: if (!EditableValueHolder.class.isAssignableFrom(sourceBean
092: .getInstance().getClass()))
093: return super .linkBeans(targetBean, sourceBean);
094:
095: DesignProperty forProperty = targetBean.getProperty("for"); //NOI18N
096: if (forProperty == null)
097: return Result.FAILURE;
098: forProperty.setValue(sourceBean.getProperty("id").getValue()); //NOI18N
099: return Result.SUCCESS;
100: }
101:
102: public boolean acceptChild(DesignBean parentBean,
103: DesignBean childBean, Class childClass) {
104: return false;
105: }
106:
107: protected DesignProperty getDefaultBindingProperty(
108: DesignBean targetBean) {
109: return null;
110: }
111:
112: }
|