X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fio%2Fmime%2FJalviewMimeContentHandler.java;h=7d1b0f5cc52c09aebf07c7dd3ee7c1f1d5ab833b;hb=80238b0ded8d29f9f50399c51bc550bc1df9c426;hp=f7547a5893afdb7adcf21c70a8a3ec608cc8c6eb;hpb=b57a02c25e335d033c97f8a6bacd6b54f62bd2b6;p=jalview.git diff --git a/src/jalview/ws/io/mime/JalviewMimeContentHandler.java b/src/jalview/ws/io/mime/JalviewMimeContentHandler.java index f7547a5..7d1b0f5 100644 --- a/src/jalview/ws/io/mime/JalviewMimeContentHandler.java +++ b/src/jalview/ws/io/mime/JalviewMimeContentHandler.java @@ -1,20 +1,23 @@ -/******************************************************************************* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) - * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle - * +/* + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors + * * This file is part of Jalview. - * + * * Jalview 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 3 of the License, or (at your option) any later version. - * + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * * Jalview 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 Jalview. If not, see . - *******************************************************************************/ + * + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. + */ package jalview.ws.io.mime; import jalview.io.packed.DataProvider; @@ -26,9 +29,9 @@ import java.util.ArrayList; import java.util.List; import org.apache.james.mime4j.MimeException; -import org.apache.james.mime4j.descriptor.BodyDescriptor; import org.apache.james.mime4j.parser.ContentHandler; -import org.apache.james.mime4j.parser.Field; +import org.apache.james.mime4j.stream.BodyDescriptor; +import org.apache.james.mime4j.stream.Field; /** * ContentHandler for parsing mime encoded messages into Jalview objects. TODO: @@ -68,7 +71,7 @@ public class JalviewMimeContentHandler implements ContentHandler /** * sources for data to be parsed */ - List dataItems = new ArrayList(); + List dataItems = new ArrayList<>(); @Override public void body(BodyDescriptor arg0, InputStream arg1) @@ -173,5 +176,4 @@ public class JalviewMimeContentHandler implements ContentHandler // TODO Auto-generated method stub return null; } - }