Author: mmerz Date: Fri Jan 21 10:36:44 2005 New Revision: 125951 URL: http://svn.apache.org/viewcvs?view=rev&rev=125951 Log:
Added: incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/model/Jsr181Modifiers.java Added: incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/model/Jsr181Modifiers.java Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/model/Jsr181Modifiers.java?view=auto&rev=125951 ============================================================================== --- (empty file) +++ incubator/beehive/trunk/wsm/src/runtime/org/apache/beehive/wsm/jsr181/model/Jsr181Modifiers.java Fri Jan 21 10:36:44 2005 @@ -0,0 +1,58 @@ +package org.apache.beehive.wsm.jsr181.model; + +/* + * Copyright 2004 The Apache Software Foundation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * $Header:$ + */ + +public class Jsr181Modifiers { + + private boolean isAbstract = false; + private boolean isFinal = false; + private boolean isPublic = true; + + public Jsr181Modifiers() { } + + public Jsr181Modifiers(boolean isAbstract, boolean isFinal, boolean isPublic) { + this.isAbstract = isAbstract; + this.isFinal = isFinal; + this.isPublic = isPublic; + } + + public boolean isAbstract() { + return isAbstract; + } + +// public void setAbstract(boolean isAbstract) { +// this.isAbstract = isAbstract; +// } + + public boolean isFinal() { + return isFinal; + } + +// public void setFinal(boolean isFinal) { +// this.isFinal = isFinal; +// } + + public boolean isPublic() { + return isPublic; + } + +// public void setPublic(boolean isPublic) { +// this.isPublic = isPublic; +// } +} \ No newline at end of file
