[Jiemamy-notify:2004] commit [3149] jiemamy-commons追加に伴う微調整。

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2009年 4月 7日 (火) 10:01:08 JST


Revision: 3149
          http://svn.sourceforge.jp/view?root=jiemamy&view=rev&rev=3149
Author:   daisuke_m
Date:     2009-04-07 10:01:08 +0900 (Tue, 07 Apr 2009)

Log Message:
-----------
jiemamy-commons追加に伴う微調整。

Modified Paths:
--------------
    artemis/trunk/jiemamy-artemis/.settings/org.eclipse.jdt.core.prefs
    hestia/trunk/jiemamy-hestia/pull.sh

Added Paths:
-----------
    zeus/trunk/jiemamy-spec-core/src/main/java/org/jiemamy/exception/UnexpectedConditionError.java


-------------- next part --------------
Modified: artemis/trunk/jiemamy-artemis/.settings/org.eclipse.jdt.core.prefs
===================================================================
--- artemis/trunk/jiemamy-artemis/.settings/org.eclipse.jdt.core.prefs	2009-04-06 23:20:09 UTC (rev 3148)
+++ artemis/trunk/jiemamy-artemis/.settings/org.eclipse.jdt.core.prefs	2009-04-07 01:01:08 UTC (rev 3149)
@@ -1,4 +1,4 @@
-#Wed Apr 01 18:30:36 JST 2009
+#Tue Apr 07 09:48:48 JST 2009
 eclipse.preferences.version=1
 org.eclipse.jdt.core.builder.cleanOutputFolder=clean
 org.eclipse.jdt.core.builder.duplicateResourceTask=warning
@@ -78,12 +78,14 @@
 org.eclipse.jdt.core.compiler.problem.syntheticAccessEmulation=ignore
 org.eclipse.jdt.core.compiler.problem.typeParameterHiding=warning
 org.eclipse.jdt.core.compiler.problem.uncheckedTypeOperation=warning
-org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=warning
+org.eclipse.jdt.core.compiler.problem.undocumentedEmptyBlock=ignore
 org.eclipse.jdt.core.compiler.problem.unhandledWarningToken=warning
 org.eclipse.jdt.core.compiler.problem.unnecessaryElse=ignore
 org.eclipse.jdt.core.compiler.problem.unnecessaryTypeCheck=warning
 org.eclipse.jdt.core.compiler.problem.unqualifiedFieldAccess=ignore
 org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownException=warning
+org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionExemptExceptionAndThrowable=enabled
+org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionIncludeDocCommentReference=enabled
 org.eclipse.jdt.core.compiler.problem.unusedDeclaredThrownExceptionWhenOverriding=enabled
 org.eclipse.jdt.core.compiler.problem.unusedImport=warning
 org.eclipse.jdt.core.compiler.problem.unusedLabel=warning
@@ -93,6 +95,7 @@
 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenImplementingAbstract=disabled
 org.eclipse.jdt.core.compiler.problem.unusedParameterWhenOverridingConcrete=disabled
 org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
+org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
 org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
 org.eclipse.jdt.core.compiler.source=1.5
 org.eclipse.jdt.core.compiler.taskCaseSensitive=enabled

Modified: hestia/trunk/jiemamy-hestia/pull.sh
===================================================================
--- hestia/trunk/jiemamy-hestia/pull.sh	2009-04-06 23:20:09 UTC (rev 3148)
+++ hestia/trunk/jiemamy-hestia/pull.sh	2009-04-07 01:01:08 UTC (rev 3149)
@@ -2,6 +2,10 @@
 
 cd `dirname $0`
 
+cd ../jiemamy-commons
+
+mvn install -Dmaven.test.skip=true
+
 cd ../jiemamy-zeus
 
 mvn install -Dmaven.test.skip=true
@@ -10,6 +14,10 @@
 
 mvn install -Dmaven.test.skip=true
 
+cd ../jiemamy-test-helper
+
+mvn install -Dmaven.test.skip=true
+
 cd ../jiemamy-html-exporter
 
 mvn install -Dmaven.test.skip=true

Added: zeus/trunk/jiemamy-spec-core/src/main/java/org/jiemamy/exception/UnexpectedConditionError.java
===================================================================
--- zeus/trunk/jiemamy-spec-core/src/main/java/org/jiemamy/exception/UnexpectedConditionError.java	                        (rev 0)
+++ zeus/trunk/jiemamy-spec-core/src/main/java/org/jiemamy/exception/UnexpectedConditionError.java	2009-04-07 01:01:08 UTC (rev 3149)
@@ -0,0 +1,56 @@
+/*
+ * Copyright 2007-2009 Jiemamy Project and the Others.
+ * Created on 2008/12/01
+ *
+ * This file is part of Jiemamy.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+ * either express or implied. See the License for the specific language
+ * governing permissions and limitations under the License.
+ */
+package org.jiemamy.exception;
+
+/**
+ * Jiemamyのバグが原因であることによるエラー。
+ * 
+ * <ul>
+ *   <li>http://d.hatena.ne.jp/daisuke-m/20081201/1228095493</li>
+ *   <li>http://d.hatena.ne.jp/daisuke-m/20081202/1228221927</li>
+ * </ul>
+ * 
+ * @since 0.2
+ * @author daisuke
+ */
+ @ SuppressWarnings("serial")
+public class UnexpectedConditionError extends Error {
+	
+	/**
+	 * インスタンスを生成する。
+	 * 
+	 * @param message 例外メッセージ(エラーが発生した状況、考えられる原因など、なるべく詳細に記載すること)
+	 * @since 0.2
+	 */
+	public UnexpectedConditionError(String message) {
+		super(message);
+	}
+	
+	/**
+	 * インスタンスを生成する。
+	 * 
+	 * @param message 例外メッセージ(エラーが発生した状況、考えられる原因など、なるべく詳細に記載すること)
+	 * @param cause 起因例外
+	 * @since 0.2
+	 */
+	public UnexpectedConditionError(String message, Throwable cause) {
+		super(message, cause);
+	}
+	
+}



Jiemamy-notify メーリングリストの案内
Back to archive index