/* * Apache License * Version 2.0, January 2004 * http://www.apache.org/licenses/ * * Copyright 2013 Aurelian Tutuianu * Copyright 2014 Aurelian Tutuianu * Copyright 2015 Aurelian Tutuianu * Copyright 2016 Aurelian Tutuianu * * 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 rapaio.printer.idea; import java.io.Serializable; /** * @author <a href="mailto:padreati@yahoo.com">Aurelian Tutuianu</a> */ @Deprecated public class CommandBytes implements Serializable { public enum Type { DRAW, IMAGE, CONFIG } private final Type type; private final byte[] bytes; private int graphicalWidth; private int graphicalHeight; private CommandBytes(Type type, byte[] bytes) { this.type = type; this.bytes = bytes; } public static CommandBytes newDraw(byte[] bytes) { return new CommandBytes(Type.DRAW, bytes); } public static CommandBytes newImage(byte[] bytes) { return new CommandBytes(Type.IMAGE, bytes); } public static CommandBytes newConfig() { return new CommandBytes(Type.CONFIG, null); } public Type getType() { return type; } public byte[] getBytes() { return bytes; } public int getGraphicalWidth() { return graphicalWidth; } public void setGraphicalWidth(int graphicalWidth) { this.graphicalWidth = graphicalWidth; } public int getGraphicalHeight() { return graphicalHeight; } public void setGraphicalHeight(int graphicalHeight) { this.graphicalHeight = graphicalHeight; } }