📄 contactstruct.java
字号:
// Decompiled by Jad v1.5.8e2. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://kpdus.tripod.com/jad.html
// Decompiler options: packimports(3)
// Source File Name: ContactStruct.java
package android.syncml.pim.vcreator;
import java.util.ArrayList;
import java.util.List;
public class ContactStruct
{
public static class PhonesStruct
{
public String data;
public String type;
public PhonesStruct()
{
}
}
public ContactStruct()
{
}
public void addPhoneList(String data, String type)
{
if(phoneList == null)
phoneList = new ArrayList();
PhonesStruct st = new PhonesStruct();
st.data = data;
st.type = type;
phoneList.add(st);
}
public void addContactmethodList(String data, String type)
{
if(contactmethodList == null)
contactmethodList = new ArrayList();
PhonesStruct st = new PhonesStruct();
st.data = data;
st.type = type;
contactmethodList.add(st);
}
public String company;
public String name;
public String notes;
public String title;
public byte photoBytes[];
public String photoType;
public List phoneList;
public List contactmethodList;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -