| |||||||||||||||||
Source File | Conditionals | Statements | Methods | TOTAL | |||||||||||||
Seasar.Framework.Container\Factory\MethodTagHandler.cs | 66.7% | 87.5% | 100.0% | 80.0% |
|
1 | #region Copyright | |
2 | /* | |
3 | * Copyright 2005 the Seasar Foundation and the Others. | |
4 | * | |
5 | * Licensed under the Apache License, Version 2.0 (the "License"); | |
6 | * you may not use this file except in compliance with the License. | |
7 | * You may obtain a copy of the License at | |
8 | * | |
9 | * http://www.apache.org/licenses/LICENSE-2.0 | |
10 | * | |
11 | * Unless required by applicable law or agreed to in writing, software | |
12 | * distributed under the License is distributed on an "AS IS" BASIS, | |
13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | |
14 | * either express or implied. See the License for the specific language | |
15 | * governing permissions and limitations under the License. | |
16 | */ | |
17 | #endregion | |
18 | ||
19 | using System; | |
20 | using Seasar.Framework.Util; | |
21 | using Seasar.Framework.Xml; | |
22 | ||
23 | namespace Seasar.Framework.Container.Factory | |
24 | { | |
25 | /// <summary> | |
26 | /// MethodTagHandler の概要の説明です。 | |
27 | /// </summary> | |
28 | public abstract class MethodTagHandler : TagHandler | |
29 | { | |
30 | 9 | protected void ProcessExpression( |
31 | IMethodDef methodDef,string expression,string tagName) | |
32 | { | |
33 | 9 | string expr = expression; |
34 | 9 | if(expr != null) |
35 | { | |
36 | 9 | expr = expr.Trim(); |
37 | 9 | if(!StringUtil.IsEmpty(expr)) |
38 | { | |
39 | 4 | methodDef.Expression = expr; |
40 | } | |
41 | else | |
42 | { | |
43 | 5 | expr = null; |
44 | } | |
45 | } | |
46 | 9 | if(methodDef.MethodName == null && expr == null) |
47 | { | |
48 | 0 | throw new TagAttributeNotDefinedRuntimeException(tagName,"name"); |
49 | } | |
50 | } | |
51 | } | |
52 | } | |
53 |
|