This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
項目名 private変数名 メソッド名 | |
商品コード shohinCd ShohinCd | |
/** \1 */\nprivate String \2; | |
↓ | |
/** 商品コード */ | |
private String shohinCd; | |
/**\n *\n * \1を設定します。\n * @param \1\n */\npublic void set\3(String \2) {\n this.\2 = \2;\n}\n\n/**\n * \1を取得します。\n *\n * @return \1\n */\npublic String get\3() {\n return \2;\n}\n | |
↓ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module TAKANO.Sho { | |
export class Greeter { | |
constructor (public name: string) {} | |
greet() { | |
WScript.Echo("Hello " + this.name + "!"); | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var TAKANO; | |
(function (TAKANO) { | |
(function (Sho) { | |
var Greeter = (function () { | |
function Greeter(name) { | |
this.name = name; | |
} | |
Greeter.prototype.greet = function () { | |
WScript.Echo("Hello " + this.name + "!"); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <reference path="greeter.ts"/> | |
var greeter = new TAKANO.Sho.Greeter("Sho"); | |
greeter.greet(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="shift_jis" ?> | |
<job id="main"> | |
<script src="greeter.js" language="JScript"></script> | |
<script src="main.js" language="JScript"></script> | |
</job> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[merge] | |
tool = WinMerge | |
[mergetool "WinMerge"] | |
cmd = \"C:/Standalone Programs/WinMerge/WinMergeU.exe\" //r //e //u //wl //wr \"$LOCAL\" \"$BASE\" \"$REMOTE\" //o \"$MERGED\" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<UserSettings> | |
<ApplicationIdentity version="11.0"/> | |
<ToolsOptions> | |
<ToolsOptionsCategory name="Environment" RegisteredName="Environment"> | |
<ToolsOptionsSubCategory name="WebBrowser" RegisteredName="WebBrowser" PackageName="Visual Studio Web Browser Package"> | |
<PropertyValue name="HomePage">http://go.microsoft.com/fwlink/?LinkId=32722&clcid=%vsspv_lcid_hex%</PropertyValue> | |
<PropertyValue name="ViewSourceIn">1</PropertyValue> | |
<PropertyValue name="ViewSourceExternalProgram">%systemroot%\system32\notepad.exe</PropertyValue> | |
<PropertyValue name="SearchPage">http://go.microsoft.com/fwlink/?LinkId=32722&clcid=%vsspv_lcid_hex%</PropertyValue> | |
</ToolsOptionsSubCategory> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<title></title> | |
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.js"></script> | |
<script type="text/javascript" src="underscore-1.4.3.js"></script> | |
<script type="text/javascript" src="backbone-0.9.9.js"></script> | |
<script type="text/javascript" src="hoge.js"></script> | |
<script type="text/javascript" src="foo.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <reference path="http://code.jquery.com/jquery-1.8.3.js"/> | |
/// <reference path="backbone-0.9.9.js" /> | |
var Hoge = Backbone.View.extend({ | |
el : $("#hoge"), | |
initialize: function(){ | |
this.render(); | |
}, | |
render : function(){ | |
this.$el.text("hoge"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <reference path="http://code.jquery.com/jquery-1.8.3.js"/> | |
/// <reference path="backbone-0.9.9.js" /> | |
var Foo = Backbone.View.extend({ | |
el : "#foo", | |
initialize: function(){ | |
this.render(); | |
}, | |
render : function(){ | |
this.$el.text("foo"); | |
} |