1 // SECTION-START[License Header] 2 // <editor-fold defaultstate="collapsed" desc=" Generated License "> 3 /* 4 * Java Object Management and Configuration 5 * Copyright (C) Christian Schulte, 2005-206 6 * All rights reserved. 7 * 8 * Redistribution and use in source and binary forms, with or without 9 * modification, are permitted provided that the following conditions 10 * are met: 11 * 12 * o Redistributions of source code must retain the above copyright 13 * notice, this list of conditions and the following disclaimer. 14 * 15 * o Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in 17 * the documentation and/or other materials provided with the 18 * distribution. 19 * 20 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, 21 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 22 * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL 23 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT, 24 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 25 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 29 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 * 31 * $JOMC: InvokerTestImplementation.java 4588 2012-06-03 06:01:30Z schulte2005 $ 32 * 33 */ 34 // </editor-fold> 35 // SECTION-END 36 package org.jomc.ri.test.support; 37 38 import java.lang.*; 39 40 // SECTION-START[Documentation] 41 // <editor-fold defaultstate="collapsed" desc=" Generated Documentation "> 42 /** 43 * {@code Invoker} test cases. 44 * 45 * <dl> 46 * <dt><b>Identifier:</b></dt><dd>JOMC :: RI :: Tests :: Invoker Test Implementation</dd> 47 * <dt><b>Name:</b></dt><dd>JOMC :: RI :: Tests :: Invoker Test Implementation</dd> 48 * <dt><b>Specifications:</b></dt> 49 * <dd>JOMC :: RI :: Tests :: Invoker Test Specification</dd> 50 * <dt><b>Abstract:</b></dt><dd>No</dd> 51 * <dt><b>Final:</b></dt><dd>No</dd> 52 * <dt><b>Stateless:</b></dt><dd>No</dd> 53 * </dl> 54 * 55 * @author <a href="mailto:schulte2005@users.sourceforge.net">Christian Schulte</a> 1.0 56 * @version 1.3 57 */ 58 // </editor-fold> 59 // SECTION-END 60 // SECTION-START[Annotations] 61 // <editor-fold defaultstate="collapsed" desc=" Generated Annotations "> 62 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" ) 63 // </editor-fold> 64 // SECTION-END 65 public class InvokerTestImplementation 66 implements 67 org.jomc.ri.test.support.InvokerTestSpecification 68 { 69 // SECTION-START[InvokerTestSpecification] 70 71 public String invoke( final String argument ) throws Exception 72 { 73 return null; 74 } 75 76 // SECTION-END 77 // SECTION-START[Constructors] 78 // <editor-fold defaultstate="collapsed" desc=" Generated Constructors "> 79 /** Creates a new {@code InvokerTestImplementation} instance. */ 80 @javax.annotation.Generated( value = "org.jomc.tools.SourceFileProcessor 1.3", comments = "See http://jomc.sourceforge.net/jomc/1.3/jomc-tools-1.3" ) 81 public InvokerTestImplementation() 82 { 83 // SECTION-START[Default Constructor] 84 super(); 85 // SECTION-END 86 } 87 // </editor-fold> 88 // SECTION-END 89 // SECTION-START[Dependencies] 90 // SECTION-END 91 // SECTION-START[Properties] 92 // SECTION-END 93 // SECTION-START[Messages] 94 // SECTION-END 95 // SECTION-START[InvokerTestImplementation] 96 // SECTION-END 97 }