]> git.uio.no Git - ifi-stolz-refaktor.git/blame - case-study/jdt-after/ui/org/eclipse/jdt/internal/ui/navigator/NonEssentialEmptyInnerPackageFilter.java
Case Study: adding data and statistics
[ifi-stolz-refaktor.git] / case-study / jdt-after / ui / org / eclipse / jdt / internal / ui / navigator / NonEssentialEmptyInnerPackageFilter.java
CommitLineData
1b2798f6
EK
1/***************************************************************************************************
2 * Copyright (c) 2000, 2008 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 **************************************************************************************************/
9package org.eclipse.jdt.internal.ui.navigator;
10
11import org.eclipse.jdt.internal.ui.filters.EmptyInnerPackageFilter;
12
13
14public class NonEssentialEmptyInnerPackageFilter extends NonEssentialElementsFilter {
15
16
17 public NonEssentialEmptyInnerPackageFilter() {
18 super(new EmptyInnerPackageFilter());
19 }
20
21}