Java tutorial
/* * Copyright (c) 2014 Carman Consulting, Inc. * * 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. */ package com.carmanconsulting.cassidy.pojo.assembly.disassembler; import com.carmanconsulting.cassidy.context.CassidyContext; import com.carmanconsulting.cassidy.pojo.assembly.AssemblyStep; import com.carmanconsulting.cassidy.pojo.assembly.Disassembler; import com.carmanconsulting.cassidy.pojo.assembly.DisassemblerService; import com.carmanconsulting.cassidy.pojo.assembly.step.ArrayStep; import com.carmanconsulting.cassidy.pojo.assembly.step.MarkStep; import org.apache.commons.lang.ArrayUtils; import java.lang.reflect.Array; import java.util.List; public class ArrayDisassembler implements Disassembler { //---------------------------------------------------------------------------------------------------------------------- // Disassembler Implementation //---------------------------------------------------------------------------------------------------------------------- @Override public boolean canDisassemble(Object object) { return object.getClass().isArray(); } @Override public void disassemble(Object object, List<AssemblyStep> steps, CassidyContext context, DisassemblerService service) { steps.add(new MarkStep()); final int length = ArrayUtils.getLength(object); for (int i = 0; i < length; ++i) { final Object element = Array.get(object, i); steps.addAll(service.disassemble(element)); } steps.add(new ArrayStep(object.getClass().getComponentType())); } }