当前位置: 首页>>代码示例>>Java>>正文


Java BeanContextSupport类代码示例

本文整理汇总了Java中java.beans.beancontext.BeanContextSupport的典型用法代码示例。如果您正苦于以下问题:Java BeanContextSupport类的具体用法?Java BeanContextSupport怎么用?Java BeanContextSupport使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


BeanContextSupport类属于java.beans.beancontext包,在下文中一共展示了BeanContextSupport类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createNodes

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
/** Create nodes for a given key.
 * @param key the key
 * @return child nodes for this key or null if there should be no
 *   nodes for this key
 */
protected Node[] createNodes(Object key) {
    Object ctx = bean;
    if (bean == null) return new Node[0];
    
    try {
        if (key instanceof BeanContextSupport) {
            BeanContextSupport bcs = (BeanContextSupport)key;

            if (((BeanContext) ctx).contains (bcs.getBeanContextPeer())) {
                // sometimes a BeanContextSupport occures in the list of
                // beans children even there is its peer. we think that
                // it is desirable to hide the context if the peer is
                // also present
                return new Node[0];
            }
        }

        return new Node[] { new BeanContextNode (key, task) };
    } catch (IntrospectionException ex) {
        // ignore the exception
        return new Node[0];
    }
}
 
开发者ID:apache,项目名称:incubator-netbeans,代码行数:29,代码来源:SerialDataNode.java

示例2: canAdd

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
/**
 * @throws a MultipleSoloMapComponentException if a duplicate
 *         instance of SoloMapComponent exists.
 * @return true if the object can be added to the MapHandler.
 */
public boolean canAdd(BeanContextSupport bc, Object obj)
        throws MultipleSoloMapComponentException {
    if (obj instanceof SoloMapComponent) {
        Class firstClass = obj.getClass();
        for (Iterator it = bc.iterator(); it.hasNext();) {
            Object someObj = it.next();
            if (someObj instanceof SoloMapComponent) {
                Class secondClass = someObj.getClass();

                if (firstClass == secondClass
                        || firstClass.isAssignableFrom(secondClass)
                        || secondClass.isAssignableFrom(firstClass)) {

                    throw new MultipleSoloMapComponentException(firstClass, secondClass);
                }
            }
        }
    }
    return true;
}
 
开发者ID:d2fn,项目名称:passage,代码行数:26,代码来源:SoloMapComponentRejectPolicy.java

示例3: testSerialization_NoPeer

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
public void testSerialization_NoPeer() throws IOException,
        ClassNotFoundException {
    BeanContextSupport support = new BeanContextSupport(null, Locale.ITALY,
            true, true);
    support
            .addBeanContextMembershipListener(new MockBeanContextMembershipListener());
    support
            .addBeanContextMembershipListener(new MockBeanContextMembershipListenerS(
                    "l2"));
    support
            .addBeanContextMembershipListener(new MockBeanContextMembershipListenerS(
                    "l3"));
    support
            .addBeanContextMembershipListener(new MockBeanContextMembershipListener());
    support.add("abcd");
    support.add(new MockBeanContextChild());
    support.add(new MockBeanContextChildS("a child"));
    support.add(new MockBeanContextChild());
    support.add("1234");
    support.add(new MockBeanContextProxyS("proxy",
            new MockBeanContextChildS("b child")));

    assertEqualsSerially(support, (BeanContextSupport) SerializationTester
            .getDeserilizedObject(support));
}
 
开发者ID:shannah,项目名称:cn1,代码行数:26,代码来源:BeanContextSupportTest.java

示例4: testSerialization_Compatibility

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
public void testSerialization_Compatibility() throws Exception {
    MockBeanContextDelegateS mock = new MockBeanContextDelegateS("main id");
    BeanContextSupport support = mock.support;
    support.addBeanContextMembershipListener(new MockBeanContextMembershipListener());
    support.addBeanContextMembershipListener(new MockBeanContextMembershipListenerS("l2"));
    support.addBeanContextMembershipListener(new MockBeanContextMembershipListenerS("l3"));
    support.addBeanContextMembershipListener(new MockBeanContextMembershipListener());
    support.add("abcd");
    support.add(new MockBeanContextChild());
    support.add(new MockBeanContextChildS("a child"));
    support.add(new MockBeanContextChild());
    support.add("1234");

    MockBeanContextDelegateS serMock = (MockBeanContextDelegateS) SerializationTester
            .readObject(mock, "serialization/java/beans/beancontext/BeanContextSupport.ser");
    assertEquals(mock.id, serMock.id);
    assertSame(mock, mock.support.beanContextChildPeer);
    assertSame(serMock, serMock.support.beanContextChildPeer);
    assertEqualsSerially(mock.support, serMock.support);
}
 
开发者ID:freeVM,项目名称:freeVM,代码行数:21,代码来源:BeanContextSupportTest.java

示例5: testContainsAllBeanContext

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
/**
 * @see java.beans.beancontext.BeanContextSupport#retainAll(Collection)
 * @see java.beans.beancontext.BeanContextSupport#iterator()
 */
public Result testContainsAllBeanContext()throws Exception {

    bean = new BeanContextChildSupport();
    beanWithContext = new BeanWithBeanContext();
    subContext = new BeanContextSupport();

    vector = new Vector();

    // Adding the components
    context.add(bean);
    context.add(beanWithContext);
    context.add(subContext);

    // Adding the components from bean context to Vector
    for (int i = 0; i < context.size(); i++) {
        vector.add(context.iterator().next());
    }

    // It's verified that objects in the specified Vector are children of this bean context 
    if (context.containsAll(vector)) {
        return passed();
    } else {
        return failed("testCollectionContainsAll() - failed ");
    }
}
 
开发者ID:freeVM,项目名称:freeVM,代码行数:30,代码来源:TestCollectionBeanContext.java

示例6: testSize

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
/**
 * @see java.beans.beancontext.BeanContextSupport#size()
 */
public Result testSize() throws Exception {

    // The BeanContext object to be checked by the test
    BeanContextSupport contextForSize = new BeanContextSupport(); 

    // Components that should be added to context
    BeanContextSupport subContext = new BeanContextSupport();                                                                  
    BeanWithBeanContext beanWithContext = new BeanWithBeanContext();        
    BeanContextChildSupport bean = new BeanContextChildSupport();
    
    // Adding the components
    contextForSize.add(subContext);
    contextForSize.add(beanWithContext);
    contextForSize.add(bean);
    
    // It's verified that the BeanContext contains 4 components
    if (contextForSize.size() == 4) {
        return passed();
    } else {
        return failed("testSize() - failed ");
    }
}
 
开发者ID:freeVM,项目名称:freeVM,代码行数:26,代码来源:TestSizeBeanContext.java

示例7: testIsContextEmpty

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
/**
 * @see java.beans.beancontext.BeanContextSupport#isEmpty()
 */
public Result testIsContextEmpty() throws Exception {

    // The BeanContext object to be checked by the test
    BeanContextSupport context = new BeanContextSupport(); 

    // Components that should be added to context
    BeanContextSupport subContext = new BeanContextSupport();                                                                  
    BeanWithBeanContext beanWithContext = new BeanWithBeanContext();        
    BeanContextChildSupport bean = new BeanContextChildSupport();
    
    // Adding the components
    context.add(subContext);
    context.add(beanWithContext);
    context.add(bean);
    
    // It's verified that the BeanContext isn't empty
    if (!context.isEmpty()) {
        return passed();
    } else {
        return failed("testIsContextEmpty() - failed ");
    }
}
 
开发者ID:freeVM,项目名称:freeVM,代码行数:26,代码来源:TestSizeBeanContext.java

示例8: testNullPointerException1

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
/**
 * @see java.beans.beancontext.BeanContextMembershipEvent
 */
public Result testNullPointerException1() throws Exception {

    context = new BeanContextSupport();
    
    bean = new BeanContextChildSupport();

    // Adding the component
    context.add(bean);

    Object[] array = null;
    try {
        event = new BeanContextMembershipEvent(bean.getBeanContext(), array);
    } catch (java.lang.NullPointerException e) {
        return passed();
    }
    return failed("testNullPointerException1");
}
 
开发者ID:freeVM,项目名称:freeVM,代码行数:21,代码来源:TestBeanContextMembershipEvent.java

示例9: testNullPointerException2

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
/**
 * @see java.beans.beancontext.BeanContextMembershipEvent
 */
public Result testNullPointerException2() throws Exception {

    context = new BeanContextSupport();
    bean = new BeanContextChildSupport();

    // Adding the component
    context.add(bean);

    Collection[] array = null;
    try {
        event = new BeanContextMembershipEvent(bean.getBeanContext(), array);
    } catch (java.lang.NullPointerException e) {

        return passed();
    }
    return failed("testNullPointerException2");
}
 
开发者ID:freeVM,项目名称:freeVM,代码行数:21,代码来源:TestBeanContextMembershipEvent.java

示例10: testContainsBeanContextMembershipEvent

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
/**
 * @see java.beans.beancontext.BeanContextMembershipEvent#contains()
 */
public Result testContainsBeanContextMembershipEvent() throws Exception {

    context = new BeanContextSupport();
    bean = new BeanContextChildSupport();
    sBean = new ServiceBean();

    // Adding the component
    context.add(bean);
    context.add(sBean);

    event = new BeanContextMembershipEvent(bean.getBeanContext(), context
            .toArray());

    if ((event.contains(sBean)) || !(event.contains(context)))
        return passed();
    else
        return failed("testContainsBeanContextMembershipEvent");
}
 
开发者ID:freeVM,项目名称:freeVM,代码行数:22,代码来源:TestBeanContextMembershipEvent.java

示例11: testIteratorBeanContextMembershipEvent

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
/**
 * @see java.beans.beancontext.BeanContextSupport#iterator()
 */
public Result testIteratorBeanContextMembershipEvent() throws Exception {

    context = new BeanContextSupport();
    bean = new BeanContextChildSupport();
    sBean = new ServiceBean();

    // Adding the component
    context.add(bean);
    context.add(sBean);

    event = new BeanContextMembershipEvent(bean.getBeanContext(), context
            .toArray());

    if ((event.iterator() instanceof java.util.Iterator))
        return passed();
    else
        return failed("testIteratorBeanContextMembershipEvent");
}
 
开发者ID:freeVM,项目名称:freeVM,代码行数:22,代码来源:TestBeanContextMembershipEvent.java

示例12: testSizeBeanContextMembershipEvent

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
/**
 * @see java.beans.beancontext.BeanContextSupport#size()
 */
public Result testSizeBeanContextMembershipEvent() throws Exception {

    context = new BeanContextSupport();
    bean = new BeanContextChildSupport();
    sBean = new ServiceBean();

    // Adding the component
    context.add(bean);
    context.add(sBean);

    event = new BeanContextMembershipEvent(bean.getBeanContext(), context
            .toArray());
    // System.out.println(event.size());
    if (event.size() == 2)
        return passed();
    else
        return failed("testSizeBeanContextMembershipEvent");
}
 
开发者ID:freeVM,项目名称:freeVM,代码行数:22,代码来源:TestBeanContextMembershipEvent.java

示例13: main

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
public static void main(String[] args) {
    BeanContextSupport context = new BeanContextSupport(); // The BeanContext
    BeanContextChildSupport bean = new BeanContextChildSupport(); // The JavaBean
    // add the bean to the context
    context.add(bean);
    try {
        context.getResourceAsStream("Readme.txt", bean);
    }
    catch (Exception exception) {
        throw new Error("unexpected exception", exception);
    }
}
 
开发者ID:lambdalab-mirror,项目名称:jdk8u-jdk,代码行数:13,代码来源:Test4233980.java

示例14: XMLBeans

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
/**
 * initializes the serialization for different types of data
 * 
 * @param layout the component that manages the layout
 * @param context the bean context support to use
 * @param datatype the type of data to read/write
 * @throws Exception if initialization fails
 */
public XMLBeans(JComponent layout, BeanContextSupport context, int datatype,
  int tab) throws Exception {
  super();

  m_vectorIndex = tab;
  m_BeanLayout = layout;
  m_BeanContextSupport = context;
  setDataType(datatype);
}
 
开发者ID:mydzigear,项目名称:repo.kmeanspp.silhouette_score,代码行数:18,代码来源:XMLBeans.java

示例15: XMLBeans

import java.beans.beancontext.BeanContextSupport; //导入依赖的package包/类
/**
 * initializes the serialization for different types of data
 * 
 * @param layout      the component that manages the layout
 * @param context     the bean context support to use
 * @param datatype    the type of data to read/write
 * @throws Exception  if initialization fails
 */
public XMLBeans(JComponent layout, BeanContextSupport context, int datatype, 
    int tab) throws Exception {
  super();
  
  m_vectorIndex = tab;
  m_BeanLayout = layout;
  m_BeanContextSupport = context;
  setDataType(datatype);
}
 
开发者ID:dsibournemouth,项目名称:autoweka,代码行数:18,代码来源:XMLBeans.java


注:本文中的java.beans.beancontext.BeanContextSupport类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。