Add the given special item as one of the attributes to be prefetched. @param item the special item to be fetched @see FetchProfile.Item#ENVELOPE @see FetchProfile.Item#CONTENT_INFO @see FetchProfile.Item#FLAGS
(Item item)
| 156 | * @see FetchProfile.Item#FLAGS |
| 157 | */ |
| 158 | public void add(Item item) { |
| 159 | if (specials == null) |
| 160 | specials = new Vector<>(); |
| 161 | specials.addElement(item); |
| 162 | } |
| 163 | |
| 164 | /** |
| 165 | * Add the specified header-field to the list of attributes |
no outgoing calls
no test coverage detected