• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mybatis / generator / 2202

05 May 2026 07:27PM UTC coverage: 91.746% (+0.04%) from 91.703%
2202

push

github

web-flow
Merge pull request #1508 from mybatis/renovate/com.github.javaparser-javaparser-core-3.x

Update dependency com.github.javaparser:javaparser-core to v3.28.1

2454 of 3154 branches covered (77.81%)

12038 of 13121 relevant lines covered (91.75%)

0.92 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

14.29
/core/mybatis-generator-core/src/main/java/org/mybatis/generator/internal/PluginAggregator.java
1
/*
2
 *    Copyright 2006-2026 the original author or authors.
3
 *
4
 *    Licensed under the Apache License, Version 2.0 (the "License");
5
 *    you may not use this file except in compliance with the License.
6
 *    You may obtain a copy of the License at
7
 *
8
 *       https://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 *    Unless required by applicable law or agreed to in writing, software
11
 *    distributed under the License is distributed on an "AS IS" BASIS,
12
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 *    See the License for the specific language governing permissions and
14
 *    limitations under the License.
15
 */
16
package org.mybatis.generator.internal;
17

18
import java.util.List;
19
import java.util.Properties;
20

21
import org.mybatis.generator.api.CommentGenerator;
22
import org.mybatis.generator.api.CompositePlugin;
23
import org.mybatis.generator.api.Indenter;
24
import org.mybatis.generator.api.KnownRuntime;
25
import org.mybatis.generator.config.Context;
26

27
/**
28
 * This class is for internal use only. It contains a list of plugins for the
29
 * current context and is used to aggregate plugins together. This class
30
 * implements the rule that if any plugin returns "false" from a method, then no
31
 * subsequent plugin is called.
32
 *
33
 * <p>This class does not follow the normal plugin lifecycle and should not be
34
 * subclassed by clients.
35
 *
36
 * @author Jeff Butler
37
 */
38
public final class PluginAggregator extends CompositePlugin {
1✔
39

40
    @Override
41
    public void setContext(Context context) {
42
        throw new UnsupportedOperationException();
×
43
    }
44

45
    @Override
46
    public void setProperties(Properties properties) {
47
        throw new UnsupportedOperationException();
×
48
    }
49

50
    @Override
51
    public boolean validate(List<String> warnings) {
52
        throw new UnsupportedOperationException();
×
53
    }
54

55
    @Override
56
    public void setCommentGenerator(CommentGenerator commentGenerator) {
57
        throw new UnsupportedOperationException();
×
58
    }
59

60
    @Override
61
    public void setKnownRuntime(KnownRuntime knownRuntime) {
62
        throw new UnsupportedOperationException();
×
63
    }
64

65
    @Override
66
    public void setIndenter(Indenter indenter) {
67
        throw new UnsupportedOperationException();
×
68
    }
69
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc