pwgroup.java

来自「KeePass for J2ME is a J2ME port of KeePa」· Java 代码 · 共 65 行

JAVA
65
字号
/*KeePass for J2MECopyright 2007 Naomaru Itoi <nao@phoneid.org>This file was derived from Java clone of KeePass - A KeePass file viewer for JavaCopyright 2006 Bill Zwicky <billzwicky@users.sourceforge.net>This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; version 2This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA*/package org.phoneid.keepassj2me;import java.util.*;/** * @author Naomaru Itoi <nao@phoneid.org> * @author Bill Zwicky <wrzwicky@pobox.com> * @author Dominik Reichl <dominik.reichl@t-online.de> */public class PwGroup {  public PwGroup() {  }    public String toString() {    return name;  }  /** Size of byte buffer needed to hold this struct. */  public static final int BUF_SIZE = 124;    // for tree traversing    public Vector childGroups = null;    public Vector childEntries = null;    public PwGroup parent = null;  public int              groupId;  public int              imageId;  public String           name;  public Date             tCreation;  public Date             tLastMod;  public Date             tLastAccess;  public Date             tExpire;  public int              level;       //short  /** Used by KeePass internally, don't use */  public int              flags;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?