📄 alignmenteditor.java
字号:
/* * Copyright (c) 2000 David Flanagan. All rights reserved. * This code is from the book Java Examples in a Nutshell, 2nd Edition. * It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or implied. * You may study, use, and modify it for any non-commercial purpose. * You may distribute it non-commercially as long as you retain this notice. * For a commercial use license, or to purchase the book (recommended), * visit http://www.davidflanagan.com/javaexamples2. */package com.davidflanagan.examples.beans;import java.beans.*;import java.awt.*;/** * This PropertyEditor defines the enumerated values of the alignment property * so that a bean box or IDE can present those values to the user for selection **/public class AlignmentEditor extends PropertyEditorSupport { /** Return the list of value names for the enumerated type. */ public String[] getTags() { return new String[] { "left", "center", "right" }; } /** Convert each of those value names into the actual value. */ public void setAsText(String s) { if (s.equals("left")) setValue(Alignment.LEFT); else if (s.equals("center")) setValue(Alignment.CENTER); else if (s.equals("right")) setValue(Alignment.RIGHT); else throw new IllegalArgumentException(s); } /** This is an important method for code generation. */ public String getJavaInitializationString() { Object o = getValue(); if (o == Alignment.LEFT) return "com.davidflanagan.examples.beans.Alignment.LEFT"; if (o == Alignment.CENTER) return "com.davidflanagan.examples.beans.Alignment.CENTER"; if (o == Alignment.RIGHT) return "com.davidflanagan.examples.beans.Alignment.RIGHT"; return null; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -