1 /*
2  * Copyright (c) 2008-2019 Emmanuel Dupuy.
3  * This project is distributed under the GPLv3 license.
4  * This is a Copyleft license that gives the user the right to use,
5  * copy and modify the code freely for non-commercial purposes.
6  */
7 
8 package org.jd.gui.api.feature;
9 
10 public interface FocusedTypeGettable extends ContainerEntryGettable {
getFocusedTypeName()11     String getFocusedTypeName();
12 }
13