How do I get Delphi 2009s (Refactor) Extract Interface to work? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T04:01:53Zhttp://stackoverflow.com/feeds/question/857204http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/857204/how-do-i-get-delphi-2009s-refactor-extract-interface-to-work0How do I get Delphi 2009s (Refactor) Extract Interface to work?norgepaul2009-05-13T10:31:44Z2009-05-13T14:18:03Z
<p>I am trying to use Delphi 2009's refactoring to extract an interface from a class. The class looks something like this:</p>
<pre><code>Type
TMyClass = class(TObject)
private
FPrivateVar: Integer;
public
procedure MyPublicProc(Value: String);
function MyPublicFunc(Value: String): String;
end;
</code></pre>
<p>If I place the cursor in the public section, right click and select Refactoring|Extract interface, there is a slight pause then... nothing. What am I doing something wrong?</p>
http://stackoverflow.com/questions/857204/how-do-i-get-delphi-2009s-refactor-extract-interface-to-work/857472#8574720Answer by André Mussche for How do I get Delphi 2009s (Refactor) Extract Interface to work?André Mussche2009-05-13T11:37:59Z2009-05-13T11:37:59Z<p>In D2007 it works OK. (I had to enable/add model support, it auto asks for it).
When I click a procedure (place cursor somewhere in for example MyPublicProc) it works OK.</p>
<p>Do you see an error if you open the refectoring view?
(Delphi -> View -> Refactorings)</p>
http://stackoverflow.com/questions/857204/how-do-i-get-delphi-2009s-refactor-extract-interface-to-work/858223#8582232Answer by vcldeveloper for How do I get Delphi 2009s (Refactor) Extract Interface to work?vcldeveloper2009-05-13T14:18:03Z2009-05-13T14:18:03Z<p>I'm using Delphi 2009 Version 12.0.3210.17555 (Update 1 and 2 installed), and I checked the feature on your class...</p>
<p>As long as I had only your class interface, and method were not implemented, I was receiving this error message:</p>
<blockquote>
<p>Selection should contain either one or
several classes or one or several
class members.</p>
</blockquote>
<p>I pressed Ctrl+Shift+C to complete the class implementation, and tried again, and It worked just fine:</p>
<p><a href="http://www.picoodle.com/view.php?img=/2/5/13/kykl1zna1e5r/f_ExtractIntem_4aaede9.png&srv=img30" rel="nofollow">http://www.picoodle.com/view.php?img=/2/5/13/kykl1zna1e5r/f_ExtractIntem_4aaede9.png&srv=img30</a></p>