View Javadoc

1   package org.apache.maven.shared.dependency.tree.filter;
2   
3   /*
4    * Licensed to the Apache Software Foundation (ASF) under one
5    * or more contributor license agreements.  See the NOTICE file
6    * distributed with this work for additional information
7    * regarding copyright ownership.  The ASF licenses this file
8    * to you under the Apache License, Version 2.0 (the
9    * "License"); you may not use this file except in compliance
10   * with the License.  You may obtain a copy of the License at
11   *
12   *  http://www.apache.org/licenses/LICENSE-2.0
13   *
14   * Unless required by applicable law or agreed to in writing,
15   * software distributed under the License is distributed on an
16   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17   * KIND, either express or implied.  See the License for the
18   * specific language governing permissions and limitations
19   * under the License.
20   */
21  
22  import org.apache.maven.shared.dependency.tree.DependencyNode;
23  
24  /**
25   * A dependency node filter that accepts nodes depending on their state.
26   * 
27   * @author <a href="mailto:markhobson@gmail.com">Mark Hobson</a>
28   * @version $Id: StateDependencyNodeFilter.java 1100703 2011-05-08 08:27:33Z hboutemy $
29   * @since 1.1
30   */
31  public class StateDependencyNodeFilter
32      implements DependencyNodeFilter
33  {
34      // constants --------------------------------------------------------------
35  
36      /**
37       * A dependency node filter that only accepts included nodes.
38       */
39      public static final StateDependencyNodeFilter INCLUDED = new StateDependencyNodeFilter( DependencyNode.INCLUDED );
40  
41      // fields -----------------------------------------------------------------
42  
43      /**
44       * The state of dependency nodes to accept.
45       * 
46       * @see DependencyNode
47       */
48      private final int state;
49  
50      // constructors -----------------------------------------------------------
51  
52      /**
53       * Creates a dependency node filter that only accepts dependency nodes of the specified state.
54       * 
55       * @param state
56       *            the state of dependency nodes to accept
57       * @throws IllegalArgumentException
58       *             if the specified state is invalid
59       */
60      public StateDependencyNodeFilter( int state )
61      {
62          if ( state < DependencyNode.INCLUDED || state > DependencyNode.OMITTED_FOR_CYCLE )
63          {
64              throw new IllegalArgumentException( "Unknown state: " + state );
65          }
66  
67          this.state = state;
68      }
69  
70      // DependencyNodeFilter methods -------------------------------------------
71  
72      /**
73       * {@inheritDoc}
74       */
75      public boolean accept( DependencyNode node )
76      {
77          return node.getState() == state;
78      }
79  
80      // public methods ---------------------------------------------------------
81  
82      /**
83       * Gets the dependency node state that this filter accepts.
84       * 
85       * @return the dependency node state that this filter accepts
86       */
87      public int getState()
88      {
89          return state;
90      }
91  }