本文整理汇总了Java中nars.io.Symbols.TO_COMPONENT_2属性的典型用法代码示例。如果您正苦于以下问题:Java Symbols.TO_COMPONENT_2属性的具体用法?Java Symbols.TO_COMPONENT_2怎么用?Java Symbols.TO_COMPONENT_2使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在类nars.io.Symbols
的用法示例。
在下文中一共展示了Symbols.TO_COMPONENT_2属性的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setKey
/**
* Set the key of the link
*/
protected void setKey() {
String at1, at2;
if ((type % 2) == 1) { // to component
at1 = Symbols.TO_COMPONENT_1;
at2 = Symbols.TO_COMPONENT_2;
} else { // to compound
at1 = Symbols.TO_COMPOUND_1;
at2 = Symbols.TO_COMPOUND_2;
}
String in = "T" + type;
if (index != null) {
for (int i = 0; i < index.length; i++) {
in += "-" + (index[i] + 1);
}
}
key = at1 + in + at2;
if (target != null) {
key += target;
}
}
示例2: setKey
/**
* Set the key of the link
*/
protected final void setKey() {
final String at1, at2;
if ((type % 2) == 1) { // to component
at1 = Symbols.TO_COMPONENT_1;
at2 = Symbols.TO_COMPONENT_2;
} else { // to compound
at1 = Symbols.TO_COMPOUND_1;
at2 = Symbols.TO_COMPOUND_2;
}
final StringBuffer sb = new StringBuffer(16).append(at1).append('T').append(type);
if (index != null) {
for (int i = 0; i < index.length; i++) {
sb.append('-').append((index[i] + 1));
}
}
sb.append(at2);
if (target != null) {
sb.append(target);
}
key = sb.toString();
}