Make tracing 3.4 compatible and plug-in local
[egit/spearce.git] / org.eclipse.egit.ui / src / org / eclipse / egit / ui / internal / trace / ITraceLocation.java
blob4301668496a48f02fe3efee341bef1833b3507c6
1 /*******************************************************************************
2 * Copyright (c) 2010 SAP AG.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the terms of the Eclipse Public License v1.0
5 * which accompanies this distribution, and is available at
6 * http://www.eclipse.org/legal/epl-v10.html
8 * Contributors:
9 * Mathias Kinzler (SAP AG) - initial implementation
10 *******************************************************************************/
11 package org.eclipse.egit.ui.internal.trace;
13 /**
14 * Helper interface for trace location management
15 * <p>
16 * Additional methods could return a description or such...
18 public interface ITraceLocation {
20 /**
21 * @return the location, e.g. "/debug/mainArea/subArea"
23 public String getLocation();
25 /**
26 * @return <code>true</code> if the location is active
28 public boolean isActive();