mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
IDEA-142346
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
package z;
|
||||
|
||||
interface FileType {
|
||||
String getName();
|
||||
}
|
||||
abstract class LanguageFileType implements FileType {
|
||||
|
||||
}
|
||||
abstract class OCBaseLanguageFileType extends LanguageFileType {
|
||||
public String <caret>getName() {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
public class XibFileType extends OCBaseLanguageFileType implements FileType {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user