Skip to content

Commit 8a875eb

Browse files
committed
ITypeFormatter
1 parent 415f2ba commit 8a875eb

File tree

1 file changed

+7
-0
lines changed
  • com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/adapter/formatter

1 file changed

+7
-0
lines changed

com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/adapter/formatter/ITypeFormatter.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,12 @@
1111

1212
package com.microsoft.java.debug.core.adapter.formatter;
1313

14+
/**
15+
* Represents a formatter dedicated to handling specific types within the Java Debug Interface (JDI).
16+
* This interface extends the {@link IFormatter}, inheriting its methods for converting objects to string representations
17+
* and determining applicability based on type. Implementers of this interface should provide type-specific
18+
* formatting logic to accurately represent objects during debugging.
19+
*/
1420
public interface ITypeFormatter extends IFormatter {
21+
// Inherits all methods from IFormatter without adding new ones.
1522
}

0 commit comments

Comments
 (0)