📄 findinfo.java
字号:
// Tina POS is a point of sales application designed for touch screens.// Copyright (C) 2005 Adrian Romero Corchado.// http://sourceforge.net/projects/tinapos//// This program is free software; you can redistribute it and/or modify// it under the terms of the GNU General Public License as published by// the Free Software Foundation; either version 2 of the License, or// (at your option) any later version.//// This program 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 General Public License for more details.//// You should have received a copy of the GNU General Public License// along with this program; if not, write to the Free Software// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USApackage net.adrianromero.data.gui;import java.util.regex.*;import net.adrianromero.data.loader.Vectorer;import net.adrianromero.basic.BasicException;import net.adrianromero.data.user.Finder;public class FindInfo implements Finder { public static final int MATCH_STARTFIELD = 0; public static final int MATCH_WHOLEFIELD = 1; public static final int MATCH_ANYPARTFIELD = 2; public static final int MATCH_REGEXP = 3; private String m_sTextCompare; private Pattern m_TextPattern; private String m_sText; // Texto a buscar private int m_iField; // Campo de busqueda private int m_iMatch; // Tipo de busqueda private boolean m_bMatchCase; // Mayusculas / Minusculas private Vectorer m_vec; /** Creates a new instance of FindInfo */ public FindInfo(Vectorer vec, String sText, int iField, boolean bMatchCase, int iMatch) { m_vec = vec; m_sText = sText; m_iField = iField; m_bMatchCase = bMatchCase; m_iMatch = iMatch; if (iMatch == MATCH_REGEXP) { m_TextPattern = m_bMatchCase ? Pattern.compile(m_sText) : Pattern.compile(m_sText, Pattern.CASE_INSENSITIVE); } else { m_sTextCompare = m_bMatchCase ? m_sText : m_sText.toUpperCase(); } } /** Creates a new instance of FindInfo */ public FindInfo(Vectorer vec) { this(vec, "", 0, true, MATCH_ANYPARTFIELD); } public Vectorer getVectorer() { return m_vec; } public String getText() { return m_sText; } public int getField() { return m_iField; } public boolean isMatchCase() { return m_bMatchCase; } public int getMatch() { return m_iMatch; } public boolean match(Object obj) throws BasicException { String[] v = m_vec.getValues(obj); String sField = m_bMatchCase ? v[m_iField] : v[m_iField].toUpperCase(); switch (m_iMatch) { case MATCH_STARTFIELD: return sField.startsWith(m_sTextCompare); case MATCH_WHOLEFIELD: return sField.equals(m_sTextCompare); case MATCH_ANYPARTFIELD: return sField.indexOf(m_sTextCompare) >= 0; case MATCH_REGEXP: return m_TextPattern.matcher(sField).matches(); default: return false; } } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -