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 68564 - "code folding" and "code completion" classes should be in jelly
Summary: "code folding" and "code completion" classes should be in jelly
Status: CLOSED FIXED
Alias: None
Product: qa
Classification: Unclassified
Component: Jellytools (show other bugs)
Version: 4.x
Hardware: All All
: P3 blocker (vote)
Assignee: issues@qa
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-11-11 16:14 UTC by soldatov
Modified: 2006-01-24 11:58 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 soldatov 2005-11-11 16:14:56 UTC
NetBeans 4.1 have new features "code folding" and "code completion".
But Jelly has not class for testing "code folding".

Class CompletionJListOperator depends from
org.netbeans.modules.editor.completion. CompletionJlist, but I have not this
class in NetBeans 4.1.
Comment 1 Jiri Skrivanek 2005-11-14 11:52:54 UTC
Class CompletionJListOperator is not in Jellytools for NB4.1. And you are right
there are no classes which can handle code folding and code completion in NB4.1.
Guys who test editors create own helper classes. If you need to start
immediatelly, you can look at the following resources in NetBeans CVS repository:

Completion:
web/jspsyntax/test/qa-functional/src/org/netbeans/test/web/core/syntax/CompletionTestOld.java
/java/editor/test/qa-functional/src/org/netbeans/test/java/editor/completion/* 

General folding tests:
/editor/test/qa-functional/src/code_folding/*

Java Editor folding tests:
/java/editor/test/qa-functional/src/java_code_folding/* 


I will add similar support to jellytools.
Comment 3 soldatov 2006-01-24 11:58:09 UTC
Thank you.