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 255215 - Add hint to create class/interface
Summary: Add hint to create class/interface
Status: NEW
Alias: None
Product: php
Classification: Unclassified
Component: Refactoring (show other bugs)
Version: 8.0.2
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Ondrej Brejla
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-09-11 12:59 UTC by fiala.premysl
Modified: 2015-09-11 12:59 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description fiala.premysl 2015-09-11 12:59:47 UTC
Scenario:

has only class A which extends (implements) unknown class (interface):

namespace Module\Something;

class A extends B implements I
{ ... }

Invoke hint dialog:
Create Abstract class Module\Something\B;
Create class Module\Something\B;
Create Interface Module\Something\I;

After selecting a choice, Netbeans will create class/interface/file in same namespace/folder as class A.