KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > jdt > internal > ui > navigator > NonEssentialEmptyInnerPackageFilter


1 /***************************************************************************************************
2  * Copyright (c) 2000, 2006 IBM Corporation and others. All rights reserved. This program and the
3  * accompanying materials are made available under the terms of the Eclipse Public License v1.0
4  * which accompanies this distribution, and is available at
5  * http://www.eclipse.org/legal/epl-v10.html
6  *
7  * Contributors: IBM Corporation - initial API and implementation
8  **************************************************************************************************/

9 package org.eclipse.jdt.internal.ui.navigator;
10
11 import org.eclipse.jdt.internal.ui.filters.EmptyInnerPackageFilter;
12
13
14 public class NonEssentialEmptyInnerPackageFilter extends NonEssentialElementsFilter {
15
16
17     public NonEssentialEmptyInnerPackageFilter() {
18         super(new EmptyInnerPackageFilter());
19     }
20
21 }
22
Popular Tags