📄 plafmacros.java
字号:
/********************************************************************** This library is free software; you can redistribute it and/or* modify it under the terms of the GNU Library General Public* License as published by the Free Software Foundation; either* version 2 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* Library General Public License for more details.** You should have received a copy of the GNU Library General Public* License along with this library; if not, write to the* Free Software Foundation, Inc., 59 Temple Place - Suite 330,* Boston, MA 02111-1307, USA.** Modified from* http://www.javafaq.nu/java/free-swing-book/free-swing-book-chapter27.shtml** @author: Copyright (C) Tim Carver*********************************************************************/package org.emboss.jemboss.gui.form;import javax.swing.*;import java.util.*;import java.io.*;import java.lang.*;import java.awt.*;/**** Macros class**/public class PlafMacros implements SwingConstants { // don't make these final, since the value is // different on each platform private static String LINE_SEPARATOR = System.getProperty("line.separator"); private static int LINE_SEPARATOR_LEN = LINE_SEPARATOR.length(); /** * * Break text into separate lines * @param text text to break up * @return multiple lines in string array * */ public static String[] breakupLines(String text) { int len = text.length(); if (len == 0) return new String[] {""}; else { Vector data = new Vector(10); int start=0; int i=0; while (i<len) { if (text.startsWith(LINE_SEPARATOR,i)) { data.addElement(text.substring(start,i)); start=i+LINE_SEPARATOR_LEN; i=start; } else if (text.charAt(i)=='\n') { data.addElement(text.substring(start,i)); start=i+1; i=start; } else { i++; } } if (start != len) data.addElement(text.substring(start)); int numlines = data.size(); String lines[] = new String[numlines]; data.copyInto(lines); return lines; } } /** * * Get the line separator string * @return line separator * */ public static String getLineSeparator() { return LINE_SEPARATOR; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -