This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 34689 - PropertySheetOperator should be rewritten to be prepared for merging new property sheet to trunk
Summary: PropertySheetOperator should be rewritten to be prepared for merging new prop...
Status: VERIFIED FIXED
Alias: None
Product: qa
Classification: Unclassified
Component: Jellytools (show other bugs)
Version: 3.x
Hardware: All All
: P1 blocker (vote)
Assignee: Jiri Skrivanek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-06-30 10:51 UTC by Marian Mirilovic
Modified: 2003-08-13 15:32 UTC (History)
0 users

See Also:
Issue Type: TASK
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Marian Mirilovic 2003-06-30 10:51:24 UTC
See issue 29447, there is planned new property
sheet merge to trunk in next 2-3 weeks.

It will be nice to have new operators ready (for
example on the same branch) .... some time before
merge.
Comment 1 Jiri Skrivanek 2003-07-08 13:27:54 UTC
OK, I will work on that.
Comment 2 Jiri Skrivanek 2003-07-17 14:27:56 UTC
Implemented in jellytools 2.1.0.
Comment 3 Marian Mirilovic 2003-07-30 13:24:01 UTC
verifying, thanks a lot.

By the way is it possible to get value from table (as visual label
text) and not use a property customizer ?
Comment 4 Jiri Skrivanek 2003-08-13 15:32:34 UTC
Method Property.getValue() returns a string representation of the
property value:

        PropertySheetOperator pso = new
PropertySheetOperator("Properties of HelloWorld");
        Property p = new Property(pso, "Name");
        System.out.println("\nProperty value="+p.getValue());

What else do you need?