- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Collections;
- namespace BaseText
- {
- public class StyleFilter
- {
- public StyleFilter()
- { }
- public ArrayList getFilter()
- {
- ArrayList arry = new ArrayList();
- arry.Add(textType.IP);
- arry.Add(textType.date);
- arry.Add(textType.phone);
- return arry;
- }
- }
- }
English
