001/*-------------------------------------------------------------------------+ 002| | 003| Copyright 2005-2011 the ConQAT Project | 004| | 005| Licensed under the Apache License, Version 2.0 (the "License"); | 006| you may not use this file except in compliance with the License. | 007| You may obtain a copy of the License at | 008| | 009| http://www.apache.org/licenses/LICENSE-2.0 | 010| | 011| Unless required by applicable law or agreed to in writing, software | 012| distributed under the License is distributed on an "AS IS" BASIS, | 013| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 014| See the License for the specific language governing permissions and | 015| limitations under the License. | 016+-------------------------------------------------------------------------*/ 017package org.conqat.lib.commons.serialization.objects; 018 019import java.io.DataOutputStream; 020import java.io.ObjectStreamConstants; 021 022import org.conqat.lib.commons.serialization.SerializedEntityPool; 023import org.conqat.lib.commons.serialization.SerializedEntitySerializer; 024import org.conqat.lib.commons.serialization.classes.SerializedClass; 025 026/** 027 * A class object. This is different from the {@link SerializedClass} as this is 028 * the actual object, while the former is only a description. 029 */ 030public class SerializedClassObject extends SerializedObjectBase { 031 032 /** Constructor. */ 033 public SerializedClassObject(SerializedEntityPool pool, int parseClassDesc) { 034 super(pool, parseClassDesc); 035 } 036 037 /** {@inheritDoc} */ 038 @Override 039 protected byte getObjectTagConstant() { 040 return ObjectStreamConstants.TC_CLASS; 041 } 042 043 /** {@inheritDoc} */ 044 @Override 045 protected void serializeObjectContent(DataOutputStream dos, SerializedEntitySerializer serializer) { 046 // nothing to do 047 } 048 049}