~duyi001/gephi/DSNI

« back to all changes in this revision

Viewing changes to SpigotEmail/src/org/gephi/io/spigot/plugin/email/api/SocialNetwork.java

  • Committer: sunsnowad
  • Author(s): Yi Du
  • Date: 2011-09-08 16:36:59 UTC
  • mfrom: (1435.1.968 gephi)
  • Revision ID: sunsnowad@www-691ed046717-20110908163659-aorx14ylp8f9qwdx
1.merge with main branch
2.update twitter4j to version 2.2.4
3.fix an existing bug on "twitter user import"

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
Copyright 2008-2010 Gephi
3
 
Authors : Yi Du <duyi001@gmail.com>
4
 
Website : http://www.gephi.org
5
 
 
6
 
This file is part of Gephi.
7
 
 
8
 
Gephi is free software: you can redistribute it and/or modify
9
 
it under the terms of the GNU General Public License as published by
10
 
the Free Software Foundation, either version 3 of the License, or
11
 
(at your option) any later version.
12
 
 
13
 
Gephi is distributed in the hope that it will be useful,
14
 
but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
GNU General Public License for more details.
17
 
 
18
 
You should have received a copy of the GNU General Public License
19
 
along with Gephi.  If not, see <http://www.gnu.org/licenses/>.
20
 
*/
21
 
package org.gephi.io.spigot.plugin.email.api;
22
 
 
23
 
/**
24
 
 *
25
 
 * @author Yi Du
26
 
 */
27
 
public interface SocialNetwork {
28
 
//
29
 
//    public String getUsername();
30
 
//
31
 
//    public void setUsername(String username);
32
 
//
33
 
//    public String getPassword();
34
 
//
35
 
//    public void setPassword(String password);
36
 
//
37
 
//    public String getNodeQuery();
38
 
//
39
 
//    public void setNodeQuery(String nodeQuery);
40
 
//
41
 
//    public String getEdgeQuery();
42
 
//
43
 
//    public void setEdgeQuery(String edgeQuery);
44
 
//
45
 
//    public String getNodeAttrQuery();
46
 
//
47
 
//    public void setNodeAttrQuery(String nodeAttrQuery);
48
 
//
49
 
//    public String getEdgeAttrQuery();
50
 
//
51
 
//    public void setEdgeAttrQuery(String edgeAttrQuery);
52
 
 
53
 
    /**
54
 
     * id of the graph
55
 
     * @param name
56
 
     */
57
 
    public void setName(String name);
58
 
 
59
 
    public String getName();
60
 
 
61
 
    /**
62
 
     * whether a filter exists
63
 
     * @return
64
 
     */
65
 
    public boolean hasFilter();
66
 
 
67
 
    public void setFilter(boolean filter);
68
 
 
69
 
    /**
70
 
     * regex
71
 
     * @param filter
72
 
     * @param property
73
 
     */
74
 
    public void setFilterProperty(String filter, String property);
75
 
 
76
 
    public String getFilterProperty(String filter);
77
 
}