/* * This file is part of libbluray * Copyright (C) 2010 William Hahne * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see * . */ package org.havi.ui; import java.awt.Color; import java.awt.Font; public class HMultilineEntry extends HSinglelineEntry { public HMultilineEntry() { org.videolan.Logger.unimplemented(HMultilineEntry.class.getName(), ""); } public HMultilineEntry(String text, int x, int y, int width, int height, int maxChars, Font font, Color color) { org.videolan.Logger.unimplemented(HMultilineEntry.class.getName(), ""); } public HMultilineEntry(int x, int y, int width, int height, int maxChars) { org.videolan.Logger.unimplemented(HMultilineEntry.class.getName(), ""); throw new Error("Not implemented"); } public HMultilineEntry(String text, int maxChars, Font font, Color color) { org.videolan.Logger.unimplemented(HMultilineEntry.class.getName(), ""); } public HMultilineEntry(int maxChars) { org.videolan.Logger.unimplemented(HMultilineEntry.class.getName(), ""); } public static void setDefaultLook(HMultilineEntryLook look) { DefaultLook = look; } public static HSinglelineEntryLook getDefaultLook() { if (DefaultLook == null) org.videolan.Logger.unimplemented("", "getDefaultLook"); return DefaultLook; } public void setLook(HLook hlook) throws HInvalidLookException { throw new Error("Not implemented"); } public void caretNextLine() { throw new Error("Not implemented"); } public void caretPreviousLine() { throw new Error("Not implemented"); } private static HSinglelineEntryLook DefaultLook = null; private static final long serialVersionUID = 2690386579157062435L; }