Fixed bug with attributes handling.
Reported by Arthur Barrett
This commit is contained in:
idk%eng.sun.com 2000-09-26 08:46:42 +00:00
Родитель cd1624272f
Коммит f1c53457bf
4 изменённых файлов: 17 добавлений и 9 удалений

Просмотреть файл

@ -24,7 +24,7 @@
#define __ORB_h
#include "bcIORB.h"
#define STUBS_COUNT (100)
#define STUBS_COUNT (1000)
class ORB : public bcIORB {
public:
ORB();

Просмотреть файл

@ -58,14 +58,14 @@ NS_IMETHODIMP bcJavaModule::RegisterSelf(nsIComponentManager *aCompMgr, nsIFile
nsresult result = NS_OK;
printf("--JavaModule::RegisterSelf\n");
ifstream in(location);
char cidStr[500], progid[1000], desc[1000];
char cidStr[500], contractid[1000], desc[1000];
in.getline(cidStr,1000);
in.getline(progid,1000);
in.getline(contractid,1000);
in.getline(desc,1000);
printf("%s %s %s", cidStr, progid, desc);
printf("%s %s %s", cidStr, contractid, desc);
nsCID cid;
cid.Parse((const char *)cidStr);
aCompMgr->RegisterComponentWithType(cid, desc, progid, _location, registryLocation, PR_TRUE, PR_TRUE, componentType);
aCompMgr->RegisterComponentWithType(cid, desc, contractid, _location, registryLocation, PR_TRUE, PR_TRUE, componentType);
return result;
}

Просмотреть файл

@ -55,7 +55,7 @@ DSO_LDOPTS += \
-L$(JDKHOME)/jre/lib/$(HOSTTYPE)/ \
-L$(JDKHOME)/jre/lib/$(HOSTTYPE)/classic \
-L$(JDKHOME)/jre/lib/$(HOSTTYPE)/native_threads \
-ljvm -lhpi -ljava\
-ljvm -lhpi -ljava -lawt\
$(NULL)
#DSO_LDOPTS += \

Просмотреть файл

@ -107,9 +107,17 @@ JNIEXPORT jobjectArray JNICALL Java_org_mozilla_xpcom_Utilities_getInterfaceMeth
for (int i = 0; i < num; i++) {
interfaceInfo->GetMethodInfo(i, (const nsXPTMethodInfo **)&info);
const char* name = info->GetName();
// first letter of the method name is in lowercase in java
sprintf(buf, "%c%s", tolower(*name), name + 1);
if (info->IsGetter()) {
sprintf(buf, "get%c%s", toupper(*name), name+1);
} else if (info->IsSetter()) {
sprintf(buf, "set%c%s", toupper(*name), name+1);
} else {
// first letter of the method name is in lowercase in java
sprintf(buf, "%c%s", tolower(*name), name + 1);
}
env->SetObjectArrayElement(names, i, env->NewStringUTF(buf));
}
return names;
}