Unnamed: 0
int64
0
6.7k
func
stringlengths
12
89.6k
target
bool
2 classes
project
stringlengths
45
151
6,700
interface TitleGetter<E extends PropertyContainer> { /** * Get the title for a node or a relationship. * @param container * the node or relationship to get the title for. * @return the title for the node/relationship. */ String getTitle( E container ); }
false
community_graphviz_src_main_java_org_neo4j_visualization_graphviz_TitleGetter.java
6,701
public enum NodeColorConfig { /** * Alias for BOTH_IGNORE_DIRECTION. */ DEFAULT() { @Override void configure( AutoNodeColor style ) { BOTH_IGNORE_DIRECTION.configure( style ); } }, /** ...
false
community_graphviz_src_main_java_org_neo4j_visualization_graphviz_color_AutoNodeColor.java
6,702
public enum Color { GREY( "#2e3436", "#888a85" ), GREEN( "#4e9a06", "#73d216" ), RED( "#a40000", "#cc0000" ), BLUE( "#204a87", "#3465a4" ), BROWN( "#8f5902", "#c17d11" ), PURPLE( "#5c3566", "#75507b" ), YELLOW( "#c4a000", "#edd400" ), ORANGE( "#ce5c00", "#f57900" ); String dark; ...
false
community_graphviz_src_main_java_org_neo4j_visualization_graphviz_color_Color.java
6,703
public interface ColorMapper<E> { /** * Get color for an entity. * * @param entity entity to get color for * @return color for entity */ Color getColor( E entity ); /** * Colors to reserve - note that it will only be called once, any changes to * the collection after tha...
false
community_graphviz_src_main_java_org_neo4j_visualization_graphviz_color_ColorMapper.java
6,704
public interface Visitor<R, E extends Throwable> { void visitNode( Node node ) throws E; void visitRelationship( Relationship relationship ) throws E; Visitor<R, E> visitSubgraph( String name ) throws E; R done() throws E; }
false
community_graphviz_src_main_java_org_neo4j_walk_Visitor.java