~motu-torrent/azureus/upstream-stable

« back to all changes in this revision

Viewing changes to org/gudy/azureus2/pluginsimpl/local/torrent/TorrentAttributeNetworksImpl.java

  • Committer: John Dong
  • Date: 2007-10-22 04:54:13 UTC
  • Revision ID: john.dong@gmail.com-20071022045413-3ovb11u82rrcokxx
Commit 3.0.3.4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Created on 23-Jun-2004
3
 
 * Created by Paul Gardner
4
 
 * Copyright (C) 2004, 2005, 2006 Aelitis, All Rights Reserved.
5
 
 *
6
 
 * This program is free software; you can redistribute it and/or
7
 
 * modify it under the terms of the GNU General Public License
8
 
 * as published by the Free Software Foundation; either version 2
9
 
 * of the License, or (at your option) any later version.
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 General Public License for more details.
14
 
 * You should have received a copy of the GNU General Public License
15
 
 * along with this program; if not, write to the Free Software
16
 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17
 
 * 
18
 
 * AELITIS, SAS au capital de 46,603.30 euros
19
 
 * 8 Allee Lenotre, La Grille Royale, 78600 Le Mesnil le Roi, France.
20
 
 *
21
 
 */
22
 
 
23
 
package org.gudy.azureus2.pluginsimpl.local.torrent;
24
 
 
25
 
/**
26
 
 * @author parg
27
 
 *
28
 
 */
29
 
 
30
 
import org.gudy.azureus2.core3.util.AENetworkClassifier;
31
 
 
32
 
public class TorrentAttributeNetworksImpl extends BaseTorrentAttributeImpl {
33
 
        
34
 
        protected TorrentAttributeNetworksImpl() {}
35
 
        
36
 
        public String getName() {
37
 
                return TA_NETWORKS;
38
 
        }
39
 
        
40
 
        public String[] getDefinedValues() {
41
 
                return AENetworkClassifier.AT_NETWORKS;
42
 
        }
43
 
        
44
 
}
 
1
/*
 
2
 * Created on 23-Jun-2004
 
3
 * Created by Paul Gardner
 
4
 * Copyright (C) 2004, 2005, 2006 Aelitis, All Rights Reserved.
 
5
 *
 
6
 * This program is free software; you can redistribute it and/or
 
7
 * modify it under the terms of the GNU General Public License
 
8
 * as published by the Free Software Foundation; either version 2
 
9
 * of the License, or (at your option) any later version.
 
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 General Public License for more details.
 
14
 * You should have received a copy of the GNU General Public License
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
17
 * 
 
18
 * AELITIS, SAS au capital de 46,603.30 euros
 
19
 * 8 Allee Lenotre, La Grille Royale, 78600 Le Mesnil le Roi, France.
 
20
 *
 
21
 */
 
22
 
 
23
package org.gudy.azureus2.pluginsimpl.local.torrent;
 
24
 
 
25
/**
 
26
 * @author parg
 
27
 *
 
28
 */
 
29
 
 
30
import org.gudy.azureus2.core3.util.AENetworkClassifier;
 
31
 
 
32
public class TorrentAttributeNetworksImpl extends BaseTorrentAttributeImpl {
 
33
        
 
34
        protected TorrentAttributeNetworksImpl() {}
 
35
        
 
36
        public String getName() {
 
37
                return TA_NETWORKS;
 
38
        }
 
39
        
 
40
        public String[] getDefinedValues() {
 
41
                return AENetworkClassifier.AT_NETWORKS;
 
42
        }
 
43
        
 
44
}