Home | History | Annotate | Download | only in modifiers
      1 package com.github.javaparser.ast.nodeTypes.modifiers;
      2 
      3 import com.github.javaparser.ast.Node;
      4 
      5 /**
      6  * A node that can be public, protected, and/or private.
      7  */
      8 public interface NodeWithAccessModifiers<N extends Node> extends NodeWithPublicModifier<N>, NodeWithPrivateModifier<N>, NodeWithProtectedModifier<N> {
      9 }
     10