package java.io; /* * #%L * Matos * $Id:$ * $HeadURL:$ * %% * Copyright (C) 2010 - 2014 Orange SA * %% * 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. * #L% */ public class ObjectStreamField implements java.lang.Comparable<java.lang.Object> { // Constructors public ObjectStreamField(java.lang.String arg1, java.lang.Class<?> arg2){ } public ObjectStreamField(java.lang.String arg1, java.lang.Class<?> arg2, boolean arg3){ } ObjectStreamField(java.lang.String arg1, java.lang.String arg2){ } // Methods public java.lang.String toString(){ return (java.lang.String) null; } public boolean isPrimitive(){ return false; } public int compareTo(java.lang.Object arg1){ return 0; } public java.lang.String getName(){ return (java.lang.String) null; } public java.lang.Class<?> getType(){ return (java.lang.Class) null; } public int getOffset(){ return 0; } public char getTypeCode(){ return '\u0000'; } public java.lang.String getTypeString(){ return (java.lang.String) null; } public boolean isUnshared(){ return false; } protected void setOffset(int arg1){ } }