source: contrib/MailArchiver/sources/src/serpro/mailarchiver/domain/metaarchive/FieldAddress.java @ 6785

Revision 6785, 2.5 KB checked in by rafaelraymundo, 12 years ago (diff)

Ticket #2946 - Liberado codigo do MailArchiver?. Documentação na subpasta DOCS.

Line 
1/**
2 * MailArchiver is an application that provides services for storing and managing e-mail messages through a Web Services SOAP interface.
3 * Copyright (C) 2012  Marcio Andre Scholl Levien and Fernando Alberto Reuter Wendt and Jose Ronaldo Nogueira Fonseca Junior
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU Affero General Public License as
7 * published by the Free Software Foundation, either version 3 of the
8 * License, or (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 * GNU Affero General Public License for more details.
14 *
15 * You should have received a copy of the GNU Affero General Public License
16 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19/******************************************************************************\
20*
21*  This product was developed by
22*
23*        SERVIÇO FEDERAL DE PROCESSAMENTO DE DADOS (SERPRO),
24*
25*  a government company established under Brazilian law (5.615/70),
26*  at Department of Development of Porto Alegre.
27*
28\******************************************************************************/
29
30package serpro.mailarchiver.domain.metaarchive;
31
32import javax.jdo.annotations.NotPersistent;
33import javax.jdo.annotations.PersistenceCapable;
34
35import com.google.common.base.Strings;
36
37import serpro.mailarchiver.util.Logger;
38
39@PersistenceCapable
40public abstract class FieldAddress
41    extends Address
42{
43    @NotPersistent
44    private static final Logger log = Logger.getLocalLogger();
45
46    //**** P E R S I S T E N T ****
47    protected Field field;
48    protected Integer fieldIdx;
49    //*****************************
50
51    public abstract Field getField();
52
53    @Override
54    public Message getRootMessage() {
55        if(getField() != null) {
56            return getField().getRootMessage();
57        }
58        return null;
59    }
60
61    //--------------------------------------------------------------------------
62    @Override
63    final int dumpPath(StringBuilder sb, boolean quit) {
64        int depth = (field == null) ? 0 : field.dumpPath(sb, false);
65        String pad = Strings.repeat("    ", depth);
66        if(quit) {
67            sb.append(toString(pad + "    "));
68        }
69        else {
70            sb.append(toString(pad + "|   ")).append("\n")
71              .append(pad).append("|\n")
72              .append(pad).append("+---");
73        }
74        return ++depth;
75    }
76}
Note: See TracBrowser for help on using the repository browser.