IU-2021.3.3 <Kane@DESKTOP-BSU1BVP Overwrite local to http://cppdisciple.f3322.org:3000/Kane/idea-config-repo.git
This commit is contained in:
commit
f62a09c318
5
_windows/keymap.xml
Normal file
5
_windows/keymap.xml
Normal file
@ -0,0 +1,5 @@
|
||||
<application>
|
||||
<component name="KeymapManager">
|
||||
<active_keymap name="Windows Proper Redo" />
|
||||
</component>
|
||||
</application>
|
@ -1,5 +1,5 @@
|
||||
<application>
|
||||
<component name="EditorColorsManagerImpl">
|
||||
<global_color_scheme name="Darcula" />
|
||||
<global_color_scheme name="_@user_Darcula" />
|
||||
</component>
|
||||
</application>
|
@ -1,5 +1,5 @@
|
||||
<application>
|
||||
<component name="CodeInsightSettings">
|
||||
<option name="AUTO_POPUP_JAVADOC_INFO" value="true" />
|
||||
<option name="USE_INSTANCEOF_ON_EQUALS_PARAMETER" value="true" />
|
||||
</component>
|
||||
</application>
|
@ -5,6 +5,7 @@
|
||||
<mapping ext="gradle.kts" type="Kotlin" />
|
||||
<mapping ext="main.kts" type="Kotlin" />
|
||||
<removed_mapping ext="apk" approved="true" type="ARCHIVE" />
|
||||
<removed_mapping ext="ignore" approved="true" type="IgnoreLang file" />
|
||||
<removed_mapping ext="psd" approved="true" type="Image" />
|
||||
</extensionMap>
|
||||
</component>
|
||||
|
43
ignore.xml
Normal file
43
ignore.xml
Normal file
@ -0,0 +1,43 @@
|
||||
<application>
|
||||
<component name="IgnoreSettings" missingGitignore="true" ignoredFileStatus="true" starredTemplates="" unignoreActions="true" notifyIgnoredEditing="true" foldableProjectViewAdvertiseShown="true">
|
||||
<languages>
|
||||
<language id="Bazaar" NEW_FILE="true" ENABLE="true" />
|
||||
<language id="CloudFoundry" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Chef" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Cvs" NEW_FILE="true" ENABLE="true" />
|
||||
<language id="Darcs" NEW_FILE="true" ENABLE="true" />
|
||||
<language id="Docker" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="ElasticBeanstalk" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="ESLint" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Floobits" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Fossil" NEW_FILE="true" ENABLE="true" />
|
||||
<language id="Git" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Google Cloud" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Kubernetes Helm" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Jetpack" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="JSHint" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Mercurial" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Monotone" NEW_FILE="true" ENABLE="true" />
|
||||
<language id="Nodemon" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Npm" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="NuxtJS" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Perforce" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Prettier" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Sourcegraph" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="StyleLint" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Stylint" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Swagger Codegen" NEW_FILE="true" ENABLE="false" />
|
||||
<language id="Team Foundation" NEW_FILE="true" ENABLE="true" />
|
||||
<language id="Up" NEW_FILE="true" ENABLE="false" />
|
||||
</languages>
|
||||
<userTemplates>
|
||||
<template name="Example user template">### Example user template
|
||||
|
||||
# IntelliJ project files
|
||||
.idea
|
||||
*.iml
|
||||
out
|
||||
gen</template>
|
||||
</userTemplates>
|
||||
</component>
|
||||
</application>
|
11
junitgenerator-app-settings.xml
Normal file
11
junitgenerator-app-settings.xml
Normal file
@ -0,0 +1,11 @@
|
||||
<application>
|
||||
<component name="JUnitGeneratorAppSettings">
|
||||
<option name="selectedTemplateKey" value="JUnit 4" />
|
||||
<option name="vmTemplates">
|
||||
<map>
|
||||
<entry key="JUnit 3" value="######################################################################################## ## ## Available variables: ## $entryList.methodList - List of method composites ## $entryList.privateMethodList - List of private method composites ## $entryList.fieldList - ArrayList of class scope field names ## $entryList.className - class name ## $entryList.packageName - package name ## $today - Todays date in MM/dd/yyyy format ## ## MethodComposite variables: ## $method.name - Method Name ## $method.signature - Full method signature in String form ## $method.reflectionCode - list of strings representing commented out reflection code to access method (Private Methods) ## $method.paramNames - List of Strings representing the method's parameters' names ## $method.paramClasses - List of Strings representing the method's parameters' classes ## ## You can configure the output class name using "testClass" variable below. ## Here are some examples: ## Test${entry.ClassName} - will produce TestSomeClass ## ${entry.className}Test - will produce SomeClassTest ## ######################################################################################## ## #macro (cap $strIn)$strIn.valueOf($strIn.charAt(0)).toUpperCase()$strIn.substring(1)#end ## Iterate through the list and generate testcase for every entry. #foreach ($entry in $entryList) #set( $testClass="${entry.className}Test") ## package test.$entry.packageName; import junit.framework.Test; import junit.framework.TestSuite; import junit.framework.TestCase; /** * ${entry.className} Tester. * * @author <Authors name> * @since <pre>$today</pre> * @version 1.0 */ public class $testClass extends TestCase { public $testClass(String name) { super(name); } public void setUp() throws Exception { super.setUp(); } public void tearDown() throws Exception { super.tearDown(); } #foreach($method in $entry.methodList) /** * * Method: $method.signature * */ public void test#cap(${method.name})() throws Exception { //TODO: Test goes here... } #end #foreach($method in $entry.privateMethodList) /** * * Method: $method.signature * */ public void test#cap(${method.name})() throws Exception { //TODO: Test goes here... #foreach($string in $method.reflectionCode) $string #end } #end public static Test suite() { return new TestSuite(${testClass}.class); } } #end" />
|
||||
<entry key="JUnit 4" value="######################################################################################## ## ## Available variables: ## $entryList.methodList - List of method composites ## $entryList.privateMethodList - List of private method composites ## $entryList.fieldList - ArrayList of class scope field names ## $entryList.className - class name ## $entryList.packageName - package name ## $today - Todays date in MM/dd/yyyy format ## ## MethodComposite variables: ## $method.name - Method Name ## $method.signature - Full method signature in String form ## $method.reflectionCode - list of strings representing commented out reflection code to access method (Private Methods) ## $method.paramNames - List of Strings representing the method's parameters' names ## $method.paramClasses - List of Strings representing the method's parameters' classes ## ## You can configure the output class name using "testClass" variable below. ## Here are some examples: ## Test${entry.ClassName} - will produce TestSomeClass ## ${entry.className}Test - will produce SomeClassTest ## ######################################################################################## ## #macro (cap $strIn)$strIn.valueOf($strIn.charAt(0)).toUpperCase()$strIn.substring(1)#end ## Iterate through the list and generate testcase for every entry. #foreach ($entry in $entryList) #set( $testClass="${entry.className}Test") ## package $entry.packageName; import org.junit.Test; import org.junit.Before; import org.junit.After; /** * ${entry.className} Tester. * * @author <Authors name> * @since <pre>$date</pre> * @version 1.0 */ public class $testClass { @Before public void before() throws Exception { } @After public void after() throws Exception { } #foreach($method in $entry.methodList) /** * * Method: $method.signature * */ @Test public void test#cap(${method.name})() throws Exception { //TODO: Test goes here... } #end #foreach($method in $entry.privateMethodList) /** * * Method: $method.signature * */ @Test public void test#cap(${method.name})() throws Exception { //TODO: Test goes here... #foreach($string in $method.reflectionCode) $string #end } #end } #end" />
|
||||
</map>
|
||||
</option>
|
||||
</component>
|
||||
</application>
|
8
keymaps/Windows Proper Redo.xml
Normal file
8
keymaps/Windows Proper Redo.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<keymap version="1" name="Windows Proper Redo" parent="$default">
|
||||
<action id="$Redo">
|
||||
<keyboard-shortcut first-keystroke="shift ctrl z" />
|
||||
<keyboard-shortcut first-keystroke="shift alt back_space" />
|
||||
<keyboard-shortcut first-keystroke="ctrl y" />
|
||||
</action>
|
||||
<action id="EditorDeleteLine" />
|
||||
</keymap>
|
@ -1,5 +1,7 @@
|
||||
<application>
|
||||
<component name="OverrideFileTypeManager">
|
||||
<file url="file://D:/develop/太保项目/disaster-warning/code/java/天气灾害预警/pom.xml" value="MavenConfig" />
|
||||
<file url="file://D:/develop/产险厦门分公司项目/天气灾害预警/code/java/天气灾害预警/pom.xml" value="MavenConfig" />
|
||||
<file url="file://D:/develop/产险厦门分公司项目/天气灾害预警/code/java/天气灾害预警/src/main/java/AppMain.java" value="JAVA" />
|
||||
<file url="file://D:/develop/产险厦门分公司项目/天气灾害预警/code/java/天气灾害预警/src/main/java/com/cpic/xim/notify/disaster/WeatherDisasterWarningGrabber.java" value="JAVA" />
|
||||
</component>
|
||||
</application>
|
Loading…
x
Reference in New Issue
Block a user