Komodo は、NetBeans または Eclipse のようにゲッター/セッターの自動生成をサポートしていますか? もしそうなら、どうやってそれを使うのですか?私はそれを見つけることができないようです。
質問する
1213 次
5 に答える
4
これは、より読みやすいコードで修正/改善されたバージョンです。また、次のように、プロパティ宣言からデフォルト値を削除しますpublic $prop = array();
from xpcom import components
import re
viewSvc = components.classes["@activestate.com/koViewService;1"]\
.getService(components.interfaces.koIViewService)
view = viewSvc.currentView.queryInterface(components.interfaces.koIScintillaView)
sm = view.scimoz
sm.currentPos # current position in the editor
sm.text # editor text
# sm.selText # the selected text
output = u"\n"
setterTemplate = """
/**
* Sets %s
*
* @param mixed $value
* @return $this
*/
public function set%s($value) {
$this->%s = $value;
return $this;
}"""
getterTemplate = """
/**
* Gets %s
*
* @return string
*/
public function get%s() {
return $this->%s;
}
"""
propertyTemplate = """%s
%s"""
prefixSizePv = len(u"private $")
prefixSizePu = len(u"public $")
prefixSizePr = len(u"protected $")
def formalName(rawName):
return u"%s%s" % (rawName[0:1].upper(), rawName[1:])
#todo find a better way to split lines, what if its Mac or Windows format?
for line in sm.text.split("\n"):
tmpLine = line.strip()
hasPriv = tmpLine.startswith("private $")
hasPublic = tmpLine.startswith("public $")
hasProt = tmpLine.startswith('protected $')
if hasPriv or hasPublic or hasProt:
if hasPriv:
realName = tmpLine[prefixSizePv:-1]
elif hasPublic:
realName = tmpLine[prefixSizePu:-1]
else:
realName = tmpLine[prefixSizePr:-1]
realName = re.sub('\s?=.*', '', realName);
formal = formalName(realName)
output += propertyTemplate % ( setterTemplate %(realName, formal, realName), getterTemplate % (realName, formal, realName))
sm.insertText(sm.currentPos, output)
于 2013-06-12T02:31:38.503 に答える
1
これは David のコードの修正版で、正しい行末で動作します。
from xpcom import components
import re
viewSvc = components.classes["@activestate.com/koViewService;1"]\
.getService(components.interfaces.koIViewService)
view = viewSvc.currentView.queryInterface(components.interfaces.koIScintillaView)
sm = view.scimoz
sm.currentPos # current position in the editor
sm.text # editor text
sm.selText # the selected text
output = u"\n"
setterTemplate = """
function set%s($value){
$this->%s = $value;
}
"""
getterTemplate = """
/**
*@return string
*/
function get%s(){
return $this->%s;
}
"""
propertyTemplate = """
%s
%s
"""
prefixSize = len(u"private $")
def formalName(rawName):
return u"%s" % "".join([part.title() for part in rawName.split("_")])
eol = u"\n" #UNIX \n (default) sm.eOLMode == 2
if sm.eOLMode == 0: #DOS/Windows \r\n
eol = u"\r\n"
elif sm.eOLMode == 1: #Mac Classic \r
eol = u"\r"
for line in sm.text.split(eol):
if line.strip().startswith("private $"):
#trim of the private $ and trailing semi-colon
realName = line.strip()[prefixSize:-1]
output += propertyTemplate % ( setterTemplate %(formalName(realName), realName), getterTemplate % (formalName(realName), realName))
output = output.replace("\n", eol)
sm.insertText(sm.currentPos, output)
于 2013-03-25T12:51:01.137 に答える
1
Komodo [Edit/Open] ではサポートされていないと思います。Komodo IDE についてはわかりません。
于 2010-08-05T02:10:05.317 に答える
0
これは決して完璧でも完成でもありませんが、PHP クラス全体のセッター/ゲッターを自動生成するために私が書いた Komodo 6 互換の Python マクロ スクリプトを次に示します。
from xpcom import components
import re
viewSvc = components.classes["@activestate.com/koViewService;1"]\
.getService(components.interfaces.koIViewService)
view = viewSvc.currentView.queryInterface(components.interfaces.koIScintillaView)
sm = view.scimoz
sm.currentPos # current position in the editor
sm.text # editor text
sm.selText # the selected text
#sm.text = "Hello World!"
output = u"\n"
setterTemplate = """
function set%s($value){
$this->%s = $value;
}
"""
getterTemplate = """
/**
*@return string
*/
function get%s(){
return $this->%s;
}
"""
propertyTemplate = """
%s
%s
"""
prefixSize = len(u"private $")
def formalName(rawName):
return u"%s" % "".join([part.title() for part in rawName.split("_")])
#todo find a better way to split lines, what if its Mac or Windows format?
for line in sm.text.split("\n"):
if line.strip().startswith("private $"):
#trim of the private $ and trailing semi-colon
realName = line.strip()[prefixSize:-1]
output += propertyTemplate % ( setterTemplate %(formalName(realName), realName), getterTemplate % (formalName(realName), realName))
sm.insertText(sm.currentPos, output)
Class Bar だけが存在する foo.php のようなファイルを与える
class Bar {
private $id;
private $name_first;
}
注射するだろう
function setId($value){
$this->id = $value;
}
/**
*@return string
*/
function getId(){
return $this->id;
}
function setNameFirst($value){
$this->name_first = $value;
}
/**
*@return string
*/
function getNameFirst(){
return $this->name_first;
}
それは私の用途には十分です(すべてをかなりすばやく再タブできます)が、スクリプトを大幅に改善した場合は、この回答を更新します。
于 2011-06-01T22:12:05.810 に答える
0
Komodo IDE も Edit もサポートしていません。
PHP では、何からコードを生成したいですか?
- エリック
于 2010-08-12T17:25:56.430 に答える