Beautifier - Object Type

Niek

Member²
How is PL/SQL Developer handling Object Type when trying to beautify it? It seems that the comma is always placed at the end for example. Are there any plan to also have object types beautified?.

Code:
CREATE OR REPLACE TYPE test AS OBJECT
(
  id               NUMBER,
  l_a              NUMBER,
  l_b              NUMBER,
  l_c              NUMBER,
  ids              test_table,
  MEMBER FUNCTION count RETURN NUMBER,
  MEMBER PROCEDURE show,
  MEMBER PROCEDURE set_a
  (
    p_id  NUMBER
   ,p_abc VARCHAR2
  ),
  CONSTRUCTOR FUNCTION test(p_id NUMBER) RETURN SELF AS RESULT
)
 
Back
Top