[jboss-cvs] aop-mc-int/src/tests/org/jboss/test/microcontainer/support ...

Kabir Khan kkhan at jboss.com
Tue Jul 11 09:55:48 EDT 2006


  User: kkhan   
  Date: 06/07/11 09:55:48

  Added:       src/tests/org/jboss/test/microcontainer/support 
                        NestedMethodAnnotatedSimpleBeanImpl.java
  Log:
  [JBAOP-239] Tests for dependencies coming from nested annotations on class
  
  Revision  Changes    Path
  1.1      date: 2006/07/11 13:55:48;  author: kkhan;  state: Exp;aop-mc-int/src/tests/org/jboss/test/microcontainer/support/NestedMethodAnnotatedSimpleBeanImpl.java
  
  Index: NestedMethodAnnotatedSimpleBeanImpl.java
  ===================================================================
  /*
  * JBoss, Home of Professional Open Source
  * Copyright 2005, JBoss Inc., and individual contributors as indicated
  * by the @authors tag. See the copyright.txt in the distribution for a
  * full listing of individual contributors.
  *
  * This is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as
  * published by the Free Software Foundation; either version 2.1 of
  * the License, or (at your option) any later version.
  *
  * This software is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with this software; if not, write to the Free
  * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  */ 
  package org.jboss.test.microcontainer.support;
  
  /**
   * 
   * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
   * @version $Revision: 1.1 $
   */
  @Test
  public class NestedMethodAnnotatedSimpleBeanImpl extends SimpleBeanImpl
  {
  
     @Containing(dependency=@TestAnnotationDependency(data="Dependency1"), contained=@Contained(dependencies= {@TestAnnotationDependency(data="Dependency2"), @TestAnnotationDependency(data="Dependency3")}))
     public void someMethod()
     {
        super.someMethod();
     }
  
  }
  
  
  



More information about the jboss-cvs-commits mailing list